cairomm: updated to 1.18.0

This commit is contained in:
John McQuah 2024-03-15 19:19:36 +00:00
parent ea37293f8f
commit f45126f337
2 changed files with 14 additions and 11 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35EB9B9mT9NkIu4gIVDg+sARg9MWbjwyB3RASvFxCq6bHr8ZHI271jQUjZCDr46YBVzIdOhTsNZoBh0icAz6CAI=
SHA256 (Pkgfile) = eb5117efbd61335c3255b955b8e561b66f1bea1e0a1ccf73de494b1822cc2949
RWSagIOpLGJF3/Nhp//jlQ28j/NMELrks1j4PiypUTPoGdiunlPqWcZ8x6vOE0/PAQaBHnqle7tMCAOaGC8vaSuC705lqTWzyQQ=
SHA256 (Pkgfile) = a761d3a19906a882d924205a941020b3d951fe4488875dee1811ac02ff618213
SHA256 (.footprint) = 4298d3de2c4e4f22b06d88214e36192e4be7e9ae34cf922793b4401aa9a3db21
SHA256 (cairomm-1.16.2.tar.xz) = 6a63bf98a97dda2b0f55e34d1b5f3fb909ef8b70f9b8d382cb1ff3978e7dc13f
SHA256 (cairomm-1.18.0.tar.xz) = b81255394e3ea8e8aa887276d22afa8985fc8daef60692eb2407d23049f03cfb

View File

@ -4,17 +4,20 @@
# Depends on: cairo libsigc++
name=cairomm
version=1.16.2
version=1.18.0
release=1
source=(https://cairographics.org/releases/$name-$version.tar.xz)
build() {
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain \
-D b_lto=true \
-D b_pie=true
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
-D maintainer-mode=false \
-D build-examples=false \
-D build-tests=false \
-D b_lto=true \
-D b_pie=true
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
}