graphene: adopted port

This commit is contained in:
Tim Biermann 2023-08-27 17:43:20 +02:00
parent a28eff736f
commit 6d7d51d8a8
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 13 additions and 13 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/bz1JPxYEU8v25tg4OMp/lYaCLvci7hdBLB4fVaxTyg/0IgtyygMxMfTn0isxS5TybARZpphOO3V+DqGhblGYA4=
SHA256 (Pkgfile) = 8f035cb8d79639fb9037452928058b1425a0ef4ed1a6fb9950ee820949cb2205
RWSE3ohX2g5d/eRO9bHrdjneFkILqn0A/2xJx1RMDEo6COjxMCDF95xhXGTMZgjaBk5ezB74nGdXbL07wG/LYVLvL9wBIhr/IAc=
SHA256 (Pkgfile) = 0fbe5a3497656262b81ebb843f7dfbb84c6c17a9323841929f6cf722b869845f
SHA256 (.footprint) = 375615ed2859965a0e6f37ea013a3ef240811a14e1e648f54766f99e0251db5d
SHA256 (graphene-1.10.8.tar.gz) = 922dc109d2dc5dc56617a29bd716c79dd84db31721a8493a13a5f79109a4a4ed

View File

@ -1,6 +1,6 @@
# Description: A thin layer of graphic data types.
# Description: A thin layer of graphic data types
# URL: https://ebassi.github.io/graphene/
# Maintainer: Danny Rawlins, crux at romster dot me
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gobject-introspection
name=graphene
@ -9,14 +9,14 @@ release=2
source=(https://github.com/ebassi/graphene/archive/$version/$name-$version.tar.gz)
build() {
meson setup build $name-$version \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D installed_tests=false
meson setup build $name-$version \
--prefix=/usr \
--libexecdir=/usr/lib/$name \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D installed_tests=false
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
}