# HG changeset patch # User Antoine Bodin # Date 1299643165 -3600 # Node ID ca5a9bd86e2a8a58ac3def5c952b19040025a01d # Parent 3e0f4c016b8bf4d90999eec2c7f4f57a32100970 Move libassuan devel files to libassuan-dev diff -r 3e0f4c016b8b -r ca5a9bd86e2a libassuan-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libassuan-dev/receipt Wed Mar 09 04:59:25 2011 +0100 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="libassuan-dev" +VERSION="2.0.1" +CATEGORY="development" +SHORT_DESC="IPC library used by some of the other GnuPG related packages (devel files)." +MAINTAINER="gokhlayeh@slitaz.org" +WEB_SITE="http://www.gnupg.org/" +WANTED="libassuan" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/libassuan.la $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/share/aclocal $fs/usr/share +} diff -r 3e0f4c016b8b -r ca5a9bd86e2a libassuan/receipt --- a/libassuan/receipt Wed Mar 09 03:11:41 2011 +0100 +++ b/libassuan/receipt Wed Mar 09 04:59:25 2011 +0100 @@ -9,25 +9,18 @@ WEB_SITE="http://www.gnupg.org/" WGET_URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$TARBALL" DEPENDS="libgpg-error" -BUILD_DEPENDS="python libgpg-error-dev pkg-config" # do not skip /usr/lib/libassuan-pth.a +BUILD_DEPENDS="python pkg-config" # do not skip /usr/lib/libassuan-pth.a # Rules to configure and make the package. compile_rules() { cd $src - ./configure \ - --prefix=/usr \ - $CONFIGURE_ARGS && - make -j 4 && - make DESTDIR=$PWD/_pkg install + ./configure && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/share - cp -a $_pkg/usr/bin $fs/usr - cp -a $_pkg/usr/lib $fs/usr - cp -a $_pkg/usr/include $fs/usr - cp -a $_pkg/usr/share/aclocal $fs/usr/share + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }