praat: update to 6.1.08
This commit is contained in:
parent
ac938da314
commit
2ecf1d2f08
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'praat'
|
# Template file for 'praat'
|
||||||
pkgname=praat
|
pkgname=praat
|
||||||
version=6.1.06
|
version=6.1.08
|
||||||
revision=1
|
revision=1
|
||||||
create_wrksrc=yes
|
create_wrksrc=yes
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
|
@ -12,13 +12,22 @@ license="GPL-2.0-or-later"
|
||||||
homepage="http://www.praat.org/"
|
homepage="http://www.praat.org/"
|
||||||
changelog="http://www.fon.hum.uva.nl/praat/manual/What_s_new_.html"
|
changelog="http://www.fon.hum.uva.nl/praat/manual/What_s_new_.html"
|
||||||
distfiles="https://github.com/praat/praat/archive/v${version}.tar.gz"
|
distfiles="https://github.com/praat/praat/archive/v${version}.tar.gz"
|
||||||
checksum=8f97e0c477d5785cc39c53b645be35d9c93d7fa8e4b3e37b8b42e81520baae66
|
checksum=b2be79fc349bd06af7a051089db4834de1e3e8a05c0f654d133b915ae47adcd6
|
||||||
|
|
||||||
build_options="pulseaudio"
|
# there are a number of pre-defined Makefiles for certain configurations
|
||||||
|
# build options are used to choose which one to use among a selected few
|
||||||
|
# option 'alsa' is for ALSA only
|
||||||
|
# 'pulseaudio' also includes ALSA
|
||||||
|
# 'jack' is jack only
|
||||||
|
# the options are mutually exclusive
|
||||||
|
build_options="alsa jack pulseaudio"
|
||||||
build_options_default="pulseaudio"
|
build_options_default="pulseaudio"
|
||||||
|
vopt_conflict jack alsa
|
||||||
|
vopt_conflict jack pulseaudio
|
||||||
|
vopt_conflict alsa pulseaudio
|
||||||
|
|
||||||
do_build() {
|
do_build() {
|
||||||
for _variant in $(vopt_if pulseaudio pulse alsa) nogui; do
|
for _variant in $(vopt_if alsa alsa) $(vopt_if jack jack) $(vopt_if pulseaudio pulse) nogui; do
|
||||||
cp -a "${pkgname}-${version}" $_variant
|
cp -a "${pkgname}-${version}" $_variant
|
||||||
cd $_variant
|
cd $_variant
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue