CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
talloc: updated to 2.3.2
[ports/opt-arm64.git] / talloc / Pkgfile
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
7 name=talloc
8 version=2.3.2
9 release=1
10 source=(https://samba.org/ftp/$name/$name-$version.tar.gz
11 $name-man-pages.tar.xz)
12
13 build() {
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 }