wok annotate ecryptfs-utils/receipt @ rev 21752
tazboot: shrink (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 15 22:12:18 2019 +0200 (2019-06-15) |
parents | |
children | 3e9a9990c985 |
rev | line source |
---|---|
pascal@20636 | 1 # SliTaz package receipt. |
pascal@20636 | 2 |
pascal@20636 | 3 PACKAGE="ecryptfs-utils" |
pascal@20636 | 4 VERSION="111" |
pascal@20636 | 5 CATEGORY="security" |
pascal@20636 | 6 SHORT_DESC="POSIX-compliant enterprise cryptographic filesystem tools" |
pascal@20636 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20636 | 8 LICENSE="GPL2" |
pascal@20636 | 9 TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" |
pascal@20636 | 10 WEB_SITE="https://launchpad.net/ecryptfs" |
pascal@20636 | 11 WGET_URL="$WEB_SITE/trunk/$VERSION/+download/$TARBALL" |
pascal@20636 | 12 TAGS="cryptography" |
pascal@20636 | 13 |
pascal@20636 | 14 DEPENDS="keyutils nss python" |
pascal@20636 | 15 BUILD_DEPENDS="keyutils-dev nss-dev python-dev" |
pascal@20636 | 16 |
pascal@20636 | 17 # Rules to configure and make the package. |
pascal@20636 | 18 compile_rules() |
pascal@20636 | 19 { |
pascal@20636 | 20 ./configure --prefix=/usr \ |
pascal@20636 | 21 --mandir=/usr/share/man \ |
pascal@20636 | 22 --disable-pam \ |
pascal@20636 | 23 $CONFIGURE_ARGS && |
pascal@20636 | 24 make && |
pascal@20636 | 25 make DESTDIR=$DESTDIR install |
pascal@20636 | 26 } |
pascal@20636 | 27 |
pascal@20636 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20636 | 29 genpkg_rules() |
pascal@20636 | 30 { |
pascal@20636 | 31 mkdir -p $fs/usr/share $fs/usr/lib |
pascal@20636 | 32 cp -a $install/sbin $fs |
pascal@20636 | 33 cp -a $install/usr/bin $fs/usr |
pascal@20636 | 34 cp -a $install/usr/share/locale $fs/usr/share |
pascal@20636 | 35 cp -a $install/usr/share/ecryptfs-utils $fs/usr/share |
pascal@20636 | 36 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@20636 | 37 cp -a $install/usr/lib/ecryptfs $fs/usr/lib |
pascal@20636 | 38 cp -a $install/usr/lib/python2.7 $fs/usr/lib |
pascal@20636 | 39 } |