mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
84 lines
2 KiB
Text
84 lines
2 KiB
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=appstream-glib
|
|
pkgver=0.8.2
|
|
pkgrel=0
|
|
pkgdesc="Library for AppStream metadata"
|
|
url="https://people.freedesktop.org/~hughsient/appstream-glib/"
|
|
arch="all"
|
|
license="LGPL-2.0-or-later"
|
|
depends="gsettings-desktop-schemas"
|
|
makedepends="
|
|
curl-dev
|
|
fontconfig-dev
|
|
freetype-dev
|
|
gdk-pixbuf-dev
|
|
glib-dev
|
|
gobject-introspection-dev
|
|
gperf
|
|
gtk+3.0-dev
|
|
json-glib-dev
|
|
libarchive-dev
|
|
libgcab-dev
|
|
meson
|
|
yaml-dev
|
|
"
|
|
subpackages="
|
|
$pkgname-dbg
|
|
$pkgname-dev
|
|
$pkgname-doc
|
|
$pkgname-lang
|
|
$pkgname-builder
|
|
$pkgname-bash-completion:bashcomp:noarch
|
|
"
|
|
source="https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-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 --print-errorlogs -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
|
|
# Remove installed tests
|
|
rm -rf "$pkgdir"/usr/share/installed-tests/appstream-glib
|
|
}
|
|
|
|
builder() {
|
|
pkgdesc="Library and command line tools for building AppStream metadata"
|
|
mkdir -p "$subpkgdir"/usr/bin "$subpkgdir"/usr/lib \
|
|
"$subpkgdir"/usr/share/bash-completion/completions
|
|
mv "$pkgdir"/usr/bin/appstream-builder "$subpkgdir"/usr/bin/
|
|
mv "$pkgdir"/usr/share/bash-completion/completions/appstream-builder \
|
|
"$subpkgdir"/usr/share/bash-completion/completions/
|
|
mv "$pkgdir"/usr/lib/asb-plugins-5 \
|
|
"$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
bashcomp() {
|
|
depends=""
|
|
pkgdesc="Bash completions for $pkgname"
|
|
install_if="$pkgname=$pkgver-r$pkgrel bash-completion"
|
|
|
|
amove usr/share/bash-completion/completions
|
|
}
|
|
|
|
sha512sums="
|
|
c9c21049ab43f5da8595aa07a3c2e097163a05b5e0fc030e4e3326136cd18127f04ad9edf08c12aea823b89048b43808cc60759cc26fcf2541cd9c1acbb29e28 appstream-glib-0.8.2.tar.xz
|
|
"
|