Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

praat: update to 6.4.07 #46875

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions srcpkgs/praat/template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Template file for 'praat'
pkgname=praat
version=6.3.18
revision=2
version=6.4.07
revision=1
create_wrksrc=yes
hostmakedepends="pkg-config"
makedepends="gtk+3-devel $(vopt_if alsa alsa-lib-devel) $(vopt_if jack jack-devel)
Expand All @@ -13,7 +13,7 @@ license="GPL-2.0-or-later"
homepage="https://www.fon.hum.uva.nl/praat/"
changelog="https://www.fon.hum.uva.nl/praat/manual/What_s_new_.html"
distfiles="https://github.com/praat/praat/archive/v${version}.tar.gz"
checksum=12b57cb9c3acebe25fe6bec93f16b0479d24ed02d30bb49879ec75f6d5145be8
checksum=56b42f59c139cd0a4386947abdfd607db93c91ad4e7b863631e4b918bd63b76d

# 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
Expand Down Expand Up @@ -48,6 +48,12 @@ do_build() {
CFLAGS+=" -DPA_BIG_ENDIAN"
fi

# see https://github.com/praat/praat/issues/2433
case "$XBPS_TARGET_MACHINE" in
i686*)
CXXFLAGS+=" -fexcess-precision=fast";;
esac;

make ${makejobs} CC="$CC" CXX="$CXX" LD="$LD" AR="$AR"

mv praat* ..
Expand Down