blob: 35a7e968f6a8b60a8e78bca5bec3f01abd19f11f (
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
37
38
39
40
41
42
43
44
45
46
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"
|