blob: 21f3ebb2aff6093062801a85deeae63e92abf502 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/sh
NAME="appstream-glib"
DESC="Library for AppStream metadata"
MAKEDEPS="meson glib libarchive libsoup json-glib gdk-pixbuf gtk3 freetype2 fontconfig yaml gperf libgcab gobject-introspection"
PKG_VER=0.8.1
SOURCE="https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-$PKG_VER.tar.xz"
build() {
meson --prefix=/usr \
-Ddep11=true \
-Dbuilder=true \
-Drpm=false \
-Dalpm=false \
-Dfonts=true \
-Dstemmer=false \
-Dman=true \
-Dgtk-doc=false \
-Dintrospection=true \
output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild -v -C output
}
package() {
DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
# Remove installed tests
rm -rf "$PKG_DEST"/usr/share/installed-tests/appstream-glib
}
|