talloc: update to 2.0.8.

This commit is contained in:
Juan RP 2012-12-04 18:17:51 +01:00
parent e1aece9c6b
commit cea17f049a
3 changed files with 14 additions and 26 deletions

View file

@ -602,7 +602,6 @@ libelf.so.1 libelf-0.155_1
libdw.so.1 libelf-0.155_1 libdw.so.1 libelf-0.155_1
libasm.so.1 libelf-0.155_1 libasm.so.1 libelf-0.155_1
libgtksourceview-3.0.so.0 gtksourceview-3.0.0_1 libgtksourceview-3.0.so.0 gtksourceview-3.0.0_1
libtalloc.so.1 talloc-2.0.1_1
libtalloc.so.2 talloc-2.0.1_1 libtalloc.so.2 talloc-2.0.1_1
libmount.so.1 libmount-2.18_1 libmount.so.1 libmount-2.18_1
libdconf.so.0 dconf-0.5.1_1 libdconf.so.0 dconf-0.5.1_1

View file

@ -1,16 +1,13 @@
# Template file for 'talloc-devel'. # Template file for 'talloc-devel'.
# #
depends="pkg-config glibc-devel" noarch=yes
depends="${sourcepkg}>=${version}"
short_desc="${short_desc} (development files)" short_desc="${short_desc} (development files)"
long_desc="${long_desc} long_desc="${long_desc}
This package contains files for development, headers, static libs, etc." This package contains files for development, headers, static libs, etc."
do_install() {
do_install() vmove usr/include usr
{ vmove usr/lib/pkgconfig usr/lib
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/{include,share} ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/lib*.*a ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/lib/pkgconfig ${DESTDIR}/usr/lib
} }

View file

@ -1,25 +1,17 @@
# Template build file for 'talloc'. # Template build file for 'talloc'.
pkgname=talloc pkgname=talloc
version=2.0.1 version=2.0.8
distfiles="http://samba.org/ftp/$pkgname/$pkgname-$version.tar.gz" revision=1
subpackages="talloc-devel"
build_style=gnu-configure build_style=gnu-configure
configure_args="--enable-talloc-compat1 --enable-largefile" configure_args="--enable-talloc-compat1"
revision=2 makedepends="pkg-config python libxslt docbook-xsl"
makedepends="pkg-config libxslt docbook-xsl"
short_desc="Hierarchical pool based memory allocator with destructors" short_desc="Hierarchical pool based memory allocator with destructors"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=5b810527405f29d54f50efd78bf2c89e318f2cd8bed001f22f2a1412fd27c9b4 homepage="http://talloc.samba.org/"
license="GPL-3"
distfiles="http://samba.org/ftp/$pkgname/$pkgname-$version.tar.gz"
checksum=1ec11e635e0318dbbb014db38ff96e8dba3ce5f614eeb7d993b4a5b71c016783
long_desc=" long_desc="
This package provides the talloc library: an hierarchical pool based memory This package provides the talloc library: an hierarchical pool based memory
allocator with destructors." allocator with destructors."
subpackages="$pkgname-devel"
post_install()
{
cd ${DESTDIR}/usr/lib && \
ln -s libtalloc.so.${version} libtalloc.so.2.0 && \
ln -s libtalloc.so.${version} libtalloc.so.2 && \
ln -s libtalloc-compat1-${version}.so libtalloc.so.1
}