diff options
-rw-r--r-- | base/talloc/.footprint | 13 | ||||
-rw-r--r-- | base/talloc/.md5sum | 1 | ||||
-rw-r--r-- | base/talloc/Pkgfile | 20 |
3 files changed, 34 insertions, 0 deletions
diff --git a/base/talloc/.footprint b/base/talloc/.footprint new file mode 100644 index 000000000..10bddb10d --- /dev/null +++ b/base/talloc/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/talloc.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libtalloc-compat1-2.0.1.so +-rw-r--r-- root/root usr/lib/libtalloc.a +-rwxr-xr-x root/root usr/lib/libtalloc.so.2.0.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/talloc.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/talloc.3.gz diff --git a/base/talloc/.md5sum b/base/talloc/.md5sum new file mode 100644 index 000000000..24f864ab1 --- /dev/null +++ b/base/talloc/.md5sum @@ -0,0 +1 @@ +c6e736540145ca58cb3dcb42f91cf57b talloc-2.0.1.tar.gz diff --git a/base/talloc/Pkgfile b/base/talloc/Pkgfile new file mode 100644 index 000000000..6a6f3f8f9 --- /dev/null +++ b/base/talloc/Pkgfile @@ -0,0 +1,20 @@ +# Description: Un allocateur basé sur un pool hiÃrarchique de mémoire avec destructeurs +# URL: http://tdb.samba.org/ +# Packager: thierryn1 at hispeed dot ch +# Maintainer: NuTyX core team + +name=talloc +version=2.0.1 +release=1 +source=(http://samba.org/ftp/$name/$name-$version.tar.gz) +build() { +cd $name-$version +./configure --prefix=/usr \ + --sysconfdir=/etc/samba \ + --localstatedir=/var \ + --enable-talloc-compat1 \ + --enable-largefile +make +make DESTDIR=$PKG/ install +chmod 644 $PKG/usr/lib/libtalloc.a +} |