wok diff ecryptfs-utils/receipt @ rev 21620

linld: more ram for zImage
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 25 13:19:35 2019 +0200 (2019-05-25)
parents
children 3e9a9990c985
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ecryptfs-utils/receipt	Sat May 25 13:19:35 2019 +0200
     1.3 @@ -0,0 +1,39 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ecryptfs-utils"
     1.7 +VERSION="111"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="POSIX-compliant enterprise cryptographic filesystem tools"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="${PACKAGE}_$VERSION.orig.tar.gz"
    1.13 +WEB_SITE="https://launchpad.net/ecryptfs"
    1.14 +WGET_URL="$WEB_SITE/trunk/$VERSION/+download/$TARBALL"
    1.15 +TAGS="cryptography"
    1.16 +
    1.17 +DEPENDS="keyutils nss python"
    1.18 +BUILD_DEPENDS="keyutils-dev nss-dev python-dev"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	./configure --prefix=/usr \
    1.24 +		--mandir=/usr/share/man \
    1.25 +		--disable-pam \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$DESTDIR install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/usr/share $fs/usr/lib
    1.35 +	cp -a $install/sbin $fs
    1.36 +	cp -a $install/usr/bin $fs/usr
    1.37 +	cp -a $install/usr/share/locale $fs/usr/share
    1.38 +	cp -a $install/usr/share/ecryptfs-utils $fs/usr/share
    1.39 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.40 +	cp -a $install/usr/lib/ecryptfs $fs/usr/lib
    1.41 +	cp -a $install/usr/lib/python2.7 $fs/usr/lib
    1.42 +}