blob: dcf5d2bbfb10c12817539f84059b45419b22b7de (
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
|
# $Id: PKGBUILD 58190 2011-11-08 15:26:34Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Thomas Dziedzic < gostrc at gmail >
pkgname=libuser
pkgver=0.57.1
pkgrel=2
pkgdesc='A standardized interface for manipulating and administering user and group accounts.'
arch=('i686' 'x86_64')
license=('LGPL')
url='https://fedorahosted.org/libuser/'
depends=('python2' 'glib2' 'popt')
options=('!libtool')
source=("https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz")
md5sums=('be82c6941264d0b4bd04f95fb342ec7d')
build() {
cd ${pkgname}-${pkgver}
export PYTHON=python2
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--disable-gtk-doc-html \
--disable-rpath
sed -i 's/SUBDIRS = po docs/SUBDIRS = po/' Makefile
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|