opt/talloc/Pkgfile

26 lines
559 B
Plaintext
Raw Normal View History

2018-11-06 17:18:54 +01:00
# Description: Hierarchical, reference counted memory pool system with destructors
2021-07-15 10:03:22 +02:00
# URL: https://talloc.samba.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: python3
2010-09-11 12:56:59 +02:00
name=talloc
2023-07-21 11:40:05 +02:00
version=2.4.1
2021-01-25 13:02:44 +01:00
release=1
2017-04-28 15:44:16 +02:00
source=(https://samba.org/ftp/$name/$name-$version.tar.gz
2021-07-15 10:03:22 +02:00
$name-man-pages.tar.xz)
2010-09-11 12:56:59 +02:00
build() {
cd $name-$version
2016-09-01 05:09:29 +02:00
./configure \
--prefix=/usr \
--bundled-libraries=NONE \
--enable-talloc-compat1
2010-09-11 12:56:59 +02:00
2023-07-22 16:40:44 +02:00
make -j1
2016-09-01 05:09:29 +02:00
make DESTDIR=$PKG install
2011-01-23 15:20:22 +01:00
install -d $PKG/usr/share/man/man3
2021-07-15 10:03:22 +02:00
install -m 0644 $SRC/talloc.3 $PKG/usr/share/man/man3
2010-09-11 12:56:59 +02:00
}