core/talloc/PKGBUILD

44 lines
1.1 KiB
Bash
Raw Normal View History

2012-12-05 23:41:45 +08:00
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
# Contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/talloc/
2010-03-14 23:48:48 +08:00
pkgname=talloc
2015-09-21 06:36:45 +08:00
pkgver=2.1.3
2010-03-14 23:48:48 +08:00
pkgrel=1
2012-12-05 23:41:45 +08:00
pkgdesc="A hierarchical pool based memory allocator with destructors"
arch=(x86_64)
2010-03-14 23:48:48 +08:00
license=('GPL3')
2015-09-21 06:36:45 +08:00
url="http://talloc.samba.org/"
2010-03-14 23:48:48 +08:00
depends=('glibc')
2012-12-05 23:41:45 +08:00
makedepends=('python2' 'docbook-xsl')
optdepends=('python2: for python bindings')
2015-09-21 06:36:45 +08:00
source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.{gz,asc})
sha1sums=('75f6a09a7199d0d952ebde6fc605dc0f2046b41c'
'SKIP')
validpgpkeys=(9147A339719518EE9011BCB54793916113084025) # samba-bugs@samba.org
2010-03-14 23:48:48 +08:00
2015-09-21 06:36:45 +08:00
prepare() {
2012-12-05 23:41:45 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
sed -i -e 's#python#python2#g' buildtools/bin/waf
2015-09-21 06:36:45 +08:00
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2010-03-14 23:48:48 +08:00
./configure --prefix=/usr \
2015-09-21 06:36:45 +08:00
--sysconfdir=/etc/samba \
--localstatedir=/var \
--bundled-libraries=NONE \
--builtin-libraries=replace \
--enable-talloc-compat1
2012-12-05 23:41:45 +08:00
make
}
2015-09-21 06:36:45 +08:00
check() {
cd "${srcdir}/${pkgname}-${pkgver}"
make check
}
2012-12-05 23:41:45 +08:00
package() {
2015-09-21 06:36:45 +08:00
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}