-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
33 lines (30 loc) · 924 Bytes
/
PKGBUILD
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
# $Id: PKGBUILD 266875 2017-11-15 14:29:11Z foutrelis $
# Maintainer: Sergej Pupykin <[email protected]>
# Maintainer: Thomas Dziedzic < gostrc at gmail >
pkgname=libuser
pkgver=0.62
pkgrel=2
pkgdesc='A standardized interface for manipulating and administering user and group accounts.'
arch=('x86_64' 'aarch64')
license=('LGPL')
url='https://pagure.io/libuser/'
depends=('python2' 'glib2' 'popt' 'pam')
backup=('etc/libuser.conf')
source=("https://releases.pagure.org/libuser/libuser-${pkgver}.tar.xz")
sha256sums=('a58ff4fabb01a25043b142185a33eeea961109dd60d4b40b6a9df4fa3cace20b')
build() {
cd ${pkgname}-${pkgver}
export PYTHON=python2
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--sbindir=/usr/bin \
--disable-gtk-doc-html \
--disable-rpath
sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="$pkgdir" install
}