pulseeffects: updated meson syntax

This commit is contained in:
Tim Biermann 2020-11-03 20:47:39 +00:00
parent 3cabffe73c
commit 97397434fd
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35RIauAoY+wU7HFLWC/u5MIjOzOOK8qKY3Xtv66iq1+FZEAuQmh4M0LWTthn4ITsdDIHLM5LzBJ2jzyvMEYb4As=
SHA256 (Pkgfile) = eaaf72410cbb9d34ee9e2ec38a2d570e9656475e567a1358e81f9e785d6090b0
RWSagIOpLGJF38pwNpw+OcgBKKq0g4lUuLLtbZA0HB3G/Emv9mgMDrtdSpmePGL1MFViOc/TDcfRc4MhCpUs5Yccstb/0KtNggo=
SHA256 (Pkgfile) = 6b53f9e67ac5625162962ca5d635360863189e5545c9c15ffe53ad15203a50a1
SHA256 (.footprint) = 0bb69df360507dac124e60cac2b20699ac7ecd05f335bbfbf2c88961f7ca2cab
SHA256 (pulseeffects-4.8.2.tar.gz) = 6a287957b91530023b9b72ca1d57507a8dcd6363e48ce34dd225fb6bab7d27ec

View File

@ -10,10 +10,12 @@ release=1
source=(https://github.com/wwmm/pulseeffects/archive/v$version/$name-$version.tar.gz)
build() {
meson $name-$version build \
meson setup $name-$version build \
--prefix=/usr \
--sysconfdir=/etc
ninja -C build
DESTDIR=$PKG ninja -C build install
--sysconfdir=/etc \
--buildtype=plain \
-Db_ndebug=true
meson compile -C build
DESTDIR=$PKG meson install -C build
rm -fr $PKG/usr/share/{locale,help}
}