wok view crypthook/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents
children b569b85b0fb9
line source
1 # SliTaz package receipt.
3 PACKAGE="crypthook"
4 GITHASH="0728cd191f0638f52f8d6af8a9482a4996322ffc"
5 VERSION=${GITHASH:0:7}
6 CATEGORY="security"
7 SHORT_DESC="TCP/UDP symmetric encryption tunnel wrapper."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="MIT"
10 TARBALL="$PACKAGE-$VERSION.zip"
11 WEB_SITE="https://github.com/chokepoint/CryptHook"
12 WGET_URL="$WEB_SITE/archive/$GITHASH.zip"
14 DEPENDS="libcrypto"
15 BUILD_DEPENDS="openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $install/usr/share/doc
27 cp -a $src/README.md $install/usr/share/doc
28 cp -a $src/crypthook.so $fs/usr/lib
29 }