blob: 1c8e018a64dff019c168ba05bb6fe4d8fe517437 (
plain)
1 # Description: Objects and methods for reading and writing AppStream metadata
2 # URL: https://people.freedesktop.org/~hughsient/appstream-glib/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: docbook-xsl gtk3 json-glib keyutils krb5 libsoup libyaml snowball
5
6 name=appstream-glib
7 version=0.7.17
8 release=1
9 source=(https://people.freedesktop.org/~hughsient/appstream-glib/releases/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 mkdir build && cd build
14 meson ../ -Drpm=false -Dprefix=/usr
15 ninja
16 DESTDIR=$PKG ninja install
17 rm -fr $PKG/usr/share/locale
18 }
|