mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
21 lines
356 B
Plaintext
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
|
|
|
|
}
|