contrib/libxmlb/Pkgfile

25 lines
622 B
Plaintext
Raw Normal View History

2022-06-19 21:37:36 +02:00
# Description: Library to help create and query binary XML blobs
# URL: https://github.com/hughsie/libxmlb
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: gobject-introspection snowball
name=libxmlb
2022-09-13 21:16:47 +02:00
version=0.3.10
2022-11-12 22:34:33 +01:00
release=2
2022-06-19 21:37:36 +02:00
source=(https://people.freedesktop.org/~hughsient/releases/$name-$version.tar.xz)
build() {
meson setup $name-$version build \
--prefix=/usr \
2022-11-12 22:34:33 +01:00
--libexecdir=lib/$name \
2022-06-19 21:37:36 +02:00
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D stemmer=true \
-D gtkdoc=false
meson compile -C build
DESTDIR=$PKG meson install -C build
}