opt/json-glib/Pkgfile

20 lines
576 B
Plaintext
Raw Normal View History

2015-11-30 16:36:40 +01:00
# Description: serialization and deserialization of JSON objects
# URL: https://wiki.gnome.org/action/show/Projects/JsonGlib
# Maintainer: Thomas Penteker, tek at serverop dot de
2019-01-03 10:24:30 +01:00
# Depends on: glib meson ninja gobject-introspection
2015-11-30 16:36:40 +01:00
name=json-glib
2019-01-02 17:13:23 +01:00
version=1.4.4
2015-11-30 16:36:40 +01:00
release=1
source=(https://download.gnome.org/sources/$name/${version%.*}/${name}-${version}.tar.xz)
build() {
2019-01-02 17:13:23 +01:00
cd $name-$version
2015-11-30 16:36:40 +01:00
2019-01-02 17:13:23 +01:00
meson build --prefix /usr
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
2015-11-30 16:36:40 +01:00
2019-01-02 17:13:23 +01:00
rm -r $PKG/usr/{share/locale,libexec}
rm -r $PKG/usr/share/installed-tests
2015-11-30 16:36:40 +01:00
}