Files
ports/main/talloc/spkgbuild
2023-07-21 12:46:52 +00:00

21 lines
356 B
Plaintext

# description : Hierarchical, reference counted memory pool system with destructors
# depends : python3
name=talloc
version=2.4.1
release=1
source="https://samba.org/ftp/$name/$name-$version.tar.gz"
build() {
cd $name-$version
./configure \
--prefix=/usr \
--bundled-libraries=NONE \
--enable-talloc-compat1
make
make DESTDIR=$PKG install
}