blob: 24ddfa2217a4c11cf0e63f04bdbf3ce6b955cd16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/mkpkg
# description: Hierarchical memory pool allocator
# url: https://talloc.samba.org/
name=talloc
version=2.5.0
release=1
source=(https://www.samba.org/ftp/talloc/$name-$version.tar.gz)
sha256sums=(
"912afa237510ae542a7733998eb18a12bcda35ab6729c8e2ddb43e8d0ebab007"
)
build() {
cd $name-$version
export LDFLAGS="$LDFLAGS -Wl,--undefined-version"
./configure \
--prefix=/usr \
--disable-python \
--bundled-libraries=NONE
make
make DESTDIR=$PKG install
find $PKG \( -name '*.la' -o -name '*.a' \) -delete
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|