wok annotate crypthook/receipt @ rev 20150
Up gnu-efi (3.0.6)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 03 14:39:40 2017 +0100 (2017-12-03) |
parents | |
children | b569b85b0fb9 |
rev | line source |
---|---|
pascal@19907 | 1 # SliTaz package receipt. |
pascal@19907 | 2 |
pascal@19907 | 3 PACKAGE="crypthook" |
pascal@19907 | 4 GITHASH="0728cd191f0638f52f8d6af8a9482a4996322ffc" |
pascal@19907 | 5 VERSION=${GITHASH:0:7} |
pascal@19907 | 6 CATEGORY="security" |
pascal@19907 | 7 SHORT_DESC="TCP/UDP symmetric encryption tunnel wrapper." |
pascal@19907 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@19907 | 9 LICENSE="MIT" |
pascal@19907 | 10 TARBALL="$PACKAGE-$VERSION.zip" |
pascal@19907 | 11 WEB_SITE="https://github.com/chokepoint/CryptHook" |
pascal@19907 | 12 WGET_URL="$WEB_SITE/archive/$GITHASH.zip" |
pascal@19907 | 13 |
pascal@19907 | 14 DEPENDS="libcrypto" |
pascal@19907 | 15 BUILD_DEPENDS="openssl-dev" |
pascal@19907 | 16 |
pascal@19907 | 17 # Rules to configure and make the package. |
pascal@19907 | 18 compile_rules() |
pascal@19907 | 19 { |
pascal@19907 | 20 make |
pascal@19907 | 21 } |
pascal@19907 | 22 |
pascal@19907 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@19907 | 24 genpkg_rules() |
pascal@19907 | 25 { |
pascal@19907 | 26 mkdir -p $fs/usr/lib $install/usr/share/doc |
pascal@19907 | 27 cp -a $src/README.md $install/usr/share/doc |
pascal@19907 | 28 cp -a $src/crypthook.so $fs/usr/lib |
pascal@19907 | 29 } |
pascal@19907 | 30 |