cairomm: clean up meson syntax

This commit is contained in:
Danny Rawlins 2020-11-10 00:45:25 +11:00
parent ada6fc3349
commit 909ed0df5e
2 changed files with 5 additions and 4 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+l44bSMhZV/iCFZochi1SIXwX4kEweiySFUIKOS+oGNPwtVJrRijDp4SjLmlkeoXch0+FlKPBYPH54/efdHpQ4=
SHA256 (Pkgfile) = 69dba5d5044403d59368719165d035c15f487e6bba89ba1dfa6cd09710cd6aad
RWSagIOpLGJF37I+ida9PDA2sIIWuOmAeK9PNeYGaBjRtu/SesZa2c7wpQqDLaCaAaa07ohLUqGodAIYNznbyT8Rhqeyq0Nm5wM=
SHA256 (Pkgfile) = 670426652125d703cccfce3abaa5ecbbd49860a97cae52a8d26f5db1beca19d6
SHA256 (.footprint) = 4298d3de2c4e4f22b06d88214e36192e4be7e9ae34cf922793b4401aa9a3db21
SHA256 (cairomm-1.16.0.tar.xz) = 7e881492c5f9f546688c31160deb742c166fc4c68b6b8eb9920c00a0f0f144f9

View File

@ -9,9 +9,10 @@ release=1
source=(https://cairographics.org/releases/$name-$version.tar.xz)
build() {
meson build $name-$version --prefix=/usr \
meson setup build $name-$version --prefix=/usr \
--buildtype=plain \
-Db_ndebug=true
-D b_ndebug=true
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}