compat-32/talloc-32/Pkgfile

31 lines
666 B
Plaintext
Raw Normal View History

# Description: Hierarchical, reference counted memory pool system with destructors
2017-02-04 08:24:01 +01:00
# URL: https://talloc.samba.org/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: python-32 talloc
name=talloc-32
2018-03-29 12:55:20 +02:00
version=2.1.12
2013-01-22 02:52:42 +01:00
release=1
2017-05-03 15:09:53 +02:00
source=(https://samba.org/ftp/${name%-*}/${name%-*}-$version.tar.gz)
build() {
2017-05-03 15:09:53 +02:00
cd ${name%-*}-$version
2016-09-04 10:00:39 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
2016-09-04 10:00:39 +02:00
--bundled-libraries=NONE \
--enable-talloc-compat1
make
make install DESTDIR=$PKG
mv $PKG/usr/lib/* $PKG/usr/lib32/
rmdir $PKG/usr/lib
2014-06-22 08:02:00 +02:00
rm -r $PKG/usr/include
# remove man pages when docbook-xsl is installed
rm -rf $PKG/usr/share/man
}