22 lines
668 B
Plaintext
22 lines
668 B
Plaintext
# 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
|
|
# Depends on: freetype gtk3 json-glib keyutils libsoup libyaml snowball xorg-libxcomposite xorg-libxcursor xorg-libxinerama xorg-libxrandr
|
|
|
|
name=appstream-glib
|
|
version=0.7.14
|
|
release=1
|
|
source=(https://people.freedesktop.org/~hughsient/appstream-glib/releases/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
mkdir build && cd build
|
|
|
|
meson ../ -Drpm=false -Dprefix=/usr
|
|
ninja
|
|
|
|
DESTDIR=$PKG ninja install
|
|
|
|
rm -fr $PKG/usr/share/locale
|
|
}
|