new package: add package 'talloc'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-10-10 19:37:16 +02:00
parent 3bdd47a8cb
commit 1edc18dfe3
3 changed files with 34 additions and 0 deletions

14
packages/devel/talloc/build Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
. config/options $1
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
make
$MAKEINSTALL

6
packages/devel/talloc/install Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
. config/options $1
mkdir -p $INSTALL/usr/lib
cp -P $PKG_BUILD/libtalloc.so* $INSTALL/usr/lib

View File

@ -0,0 +1,14 @@
PKG_NAME="talloc"
PKG_VERSION="2.0.1"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="LGPL"
PKG_SITE="http://www.samba.org"
PKG_URL="http://samba.org/ftp/talloc/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS=""
PKG_BUILD_DEPENDS="toolchain"
PKG_PRIORITY="optional"
PKG_SECTION="devel"
PKG_SHORTDESC="talloc: talloc is a hierarchical, reference counted memory pool system with destructors."
PKG_LONGDESC="talloc is a hierarchical, reference counted memory pool system with destructors. It is the core memory allocator used in Samba."
PKG_IS_ADDON="no"