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
|
2023-08-18 15:11:49 +02:00
|
|
|
version=0.3.13
|
2023-02-25 12:36:39 +01:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/hughsie/libxmlb/releases/download/$version/libxmlb-$version.tar.xz)
|
2022-06-19 21:37:36 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
meson setup $name-$version build \
|
|
|
|
--prefix=/usr \
|
2022-11-12 21:34:33 +00: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
|
|
|
|
}
|