aboutsummaryrefslogtreecommitdiffstats
path: root/testing/libuser/APKBUILD
blob: 3de85f892a6bfbd2c9be4c239f40015bca047f3b (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: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=libuser
pkgver=0.62
pkgrel=0
pkgdesc="A standardized interface for manipulating and administering user and group accounts"
url="https://pagure.io/libuser"
arch="all"
license="LGPL"
depends="python2"
makedepends="python2-dev glib-dev popt-dev libexecinfo-dev linux-pam-dev
autoconf automake libtool"
subpackages="$pkgname-dev $pkgname-doc $pkgname-lang py2-$pkgname:_py"
source="https://releases.pagure.org/$pkgname/$pkgname-$pkgver.tar.xz
	0001-Check-for-issetugid.patch
	0002-remove-unused-execinfo.h.patch"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--sbindir=/usr/bin \
		--with-python \
		--disable-gtk-doc-html \
		--disable-rpath
		sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
		make || return 1
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

_py() {
	cd "$builddir"
	pkgdesc="Python2 bindings for $pkgname"
	depends="$pkgname"
	mkdir -p "$subpkgdir"/usr/lib
	mv "$pkgdir""/usr/lib/python2.7" "$subpkgdir"/usr/lib
}

sha512sums="bc2f68456eae5912ac236192e97a3d66d5fa782520eff48d44d391c1ade590e001d821d7a93499e2391d0310cf03f60e4411f045f6ee3301af4e174d9ddc8450  libuser-0.62.tar.xz
544f5124bf9a78daa99cf6d3f5b89c8519d7385aa7d1da9384fe29fea7285e61d7c91a865303258669232c3ed0590c8143e8acad66a6e1bc87069444e4af40b1  0001-Check-for-issetugid.patch
b7da24da834b7e00e3449ab49c2187b0d8993079888b0900b62ec418db8fc025a22ee4b779715cc6ca327b614d97dd1fbf0a33f4f22fedade06782a3ba11f599  0002-remove-unused-execinfo.h.patch"