CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
talloc: updated to 2.3.1
[ports/opt-arm64.git] / talloc / Pkgfile
CommitLineData
9d6dea2c
VM
1# Description: Hierarchical, reference counted memory pool system with destructors
2# URL: https://talloc.samba.org/
3# Maintainer: Juergen Daubert, jue at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on: python3
6
7name=talloc
0af4e383 8version=2.3.1
9d6dea2c
VM
9release=1
10source=(https://samba.org/ftp/$name/$name-$version.tar.gz
11 $name-man-pages.tar.xz)
12
13build() {
14 cd $name-$version
15
16 ./configure \
17 --prefix=/usr \
18 --bundled-libraries=NONE \
19 --enable-talloc-compat1
20
21 make
22 make DESTDIR=$PKG install
23
24 install -d $PKG/usr/share/man/man3
25 install -m 0644 $SRC/*.3 $PKG/usr/share/man/man3
26}