2019-06-11 23:45:35 +02:00
|
|
|
# Description: Objects and methods for reading and writing AppStream metadata
|
|
|
|
# URL: https://people.freedesktop.org/~hughsient/appstream-glib/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-09-08 11:57:11 +00:00
|
|
|
# Depends on: gtk3 json-glib keyutils krb5 libsoup libyaml
|
|
|
|
# Optional: docbook-xsl snowball
|
2019-06-11 23:45:35 +02:00
|
|
|
|
|
|
|
name=appstream-glib
|
2020-09-08 11:45:00 +00:00
|
|
|
version=0.7.18
|
2019-06-11 23:45:35 +02:00
|
|
|
release=1
|
|
|
|
source=(https://people.freedesktop.org/~hughsient/appstream-glib/releases/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2020-09-08 11:57:11 +00:00
|
|
|
[[ -f /usr/lib/libstemmer.so ]] && PKGMK_APPSTREAM_GLIB=' -Dstemmer=true' || PKGMK_APPSTREAM_GLIB=' -Dstemmer=false'
|
2020-11-03 17:25:58 +00:00
|
|
|
meson setup $name-$version build $PKGMK_APPSTREAM_GLIB \
|
2020-09-08 11:45:00 +00:00
|
|
|
-Dprefix=/usr \
|
2020-11-03 17:25:58 +00:00
|
|
|
-Dbuildtype=plain \
|
|
|
|
-Db_ndebug=true \
|
2020-09-08 11:57:11 +00:00
|
|
|
-Drpm=false \
|
|
|
|
-Dgtk-doc=false
|
2020-11-03 17:25:58 +00:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2019-08-07 20:46:40 +00:00
|
|
|
rm -fr $PKG/usr/share/locale
|
2019-06-11 23:45:35 +02:00
|
|
|
}
|