libsigc++: updated meson syntax

This commit is contained in:
Tim Biermann 2020-11-07 16:46:43 +00:00
parent 5713b9d529
commit 93b97b9c9e
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32aizvP7380nrMEh2A10GRFxM54ZJt8+GfnPtdCqF1zHB2EIhYCNg1HHGbg7Iu1VMPxsskib30id03k2+bGZaQc=
SHA256 (Pkgfile) = 9bc2a55b80f8457c5c7b0b07d83729279108ef8afda73d254abc314f917c99bd
RWSagIOpLGJF36vXkp23uZKEBcmDHCTLT2V1JjgUfv14x1AWWJbpyhgOQ1+sx66hZNV0sawrgudHPJF4UvKFH5b5rkM/tY0Q5As=
SHA256 (Pkgfile) = b4aaab068ebfbd0d1599a7ca02503f15cee7f6e347e472fc823c6c078f1ca6bb
SHA256 (.footprint) = 09f30d18c898d0d3b1ed8f6b03fecaf175bc46877795082cf815e45e9e2e22b8
SHA256 (libsigc++-3.0.4.tar.xz) = a3a37410186379df1908957e7aba7519bdcf5bcc8ed70ee8dfea9362c393d545

View File

@ -9,7 +9,10 @@ release=1
source=(https://download.gnome.org/sources/libsigc++/${version%.*}/$name-$version.tar.xz)
build() {
meson build $name-$version --prefix=/usr
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
-Db_ndebug=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}