diff options
Diffstat (limited to 'main/mate-polkit')
-rw-r--r-- | main/mate-polkit/APKBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/main/mate-polkit/APKBUILD b/main/mate-polkit/APKBUILD new file mode 100644 index 0000000000..35a7e968f6 --- /dev/null +++ b/main/mate-polkit/APKBUILD @@ -0,0 +1,47 @@ +# Contributor: Alan Lacerda <alacerda@alpinelinux.org> +# Maintainer: Alan Lacerda <alacerda@alpinelinux.org> +pkgname=mate-polkit +pkgver=1.9.90 +pkgrel=0 +pkgdesc="MATE Authentication Agent for PolicyKit" +url="https://github.com/mate-desktop/mate-polkit" +arch="all" +license="GPL2" +depends="mate-common" +depends_dev="" +makedepends="$depends_dev polkit-dev libtool intltool gtk+-dev + gobject-introspection-dev" +install="" +subpackages="$pkgname-dev $pkgname-lang" +source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" + +_builddir="$srcdir/$pkgname-$pkgver" +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install || return 1 + find "$pkgdir" -name \*.la -delete +} + +md5sums="00c1758d8173fbbd8c3e4646f97f3e36 mate-polkit-1.9.90.tar.xz" +sha256sums="a1af54d501f52e55032bd70ebc016944320ca53fdffa332843b5245e08fe8683 mate-polkit-1.9.90.tar.xz" +sha512sums="f348c3f63f4dd17e1aa93bd7aeb5ca5b51a64e1c20cefbdd6492791cbd805b1150e93b5c79e4baecbe4bd3fc56ec6bdaa69493323895f311543d0cee6ff6e6ab mate-polkit-1.9.90.tar.xz" |