cairomm: updated meson syntax

This commit is contained in:
Tim Biermann 2020-11-07 15:44:52 +00:00
parent f60fbcf4a2
commit 0a7267c945
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF32RVPjM4aXJPJ8R+V496YnGTpc3RnbPyAciXVKT0qku+dLCD3mYloNY3Q5yvaUzM09XJDE6VkImrmrAC+rtp/gc=
SHA256 (Pkgfile) = b74eb7f44f38a199000086518d9f5b12d78e1346aa1606e579a433db199c8304
RWSagIOpLGJF3+l44bSMhZV/iCFZochi1SIXwX4kEweiySFUIKOS+oGNPwtVJrRijDp4SjLmlkeoXch0+FlKPBYPH54/efdHpQ4=
SHA256 (Pkgfile) = 69dba5d5044403d59368719165d035c15f487e6bba89ba1dfa6cd09710cd6aad
SHA256 (.footprint) = 4298d3de2c4e4f22b06d88214e36192e4be7e9ae34cf922793b4401aa9a3db21
SHA256 (cairomm-1.16.0.tar.xz) = 7e881492c5f9f546688c31160deb742c166fc4c68b6b8eb9920c00a0f0f144f9

View File

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