blob: db94995610d805f08d3a0c3992e74f37d5b5465e (
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
|
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=libgcab
pkgver=1.4
pkgrel=3
pkgdesc="A GObject library to create cabinet files"
url="https://wiki.gnome.org/msitools"
arch="all"
license="LGPL-2.0-or-later"
makedepends="meson gobject-introspection-dev glib-dev vala gtk-doc"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
source="https://download.gnome.org/sources/gcab/$pkgver/gcab-$pkgver.tar.xz"
builddir="$srcdir"/gcab-$pkgver
build() {
abuild-meson \
output
meson compile ${JOBS:+-j ${JOBS}} -C output
}
check() {
meson test --no-rebuild -v -C output
}
package() {
DESTDIR="$pkgdir" meson install --no-rebuild -C output
}
sha512sums="66a2e0d0a5888c555153356ce808f602053e71b76af19794db7e3bbf9516fe791805068838b4e208698cd645ada7a08610ac95f846fa81e00a9b955016306299 gcab-1.4.tar.xz"
|