wok view bcrypt/receipt @ rev 20367

debugging code removed
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 20:50:42 2018 +0000 (2018-06-09)
parents 11b5e93cb5f2
children 3105f866bc3e
line source
1 # SliTaz package receipt.
3 PACKAGE="bcrypt"
4 VERSION="1.1"
5 CATEGORY="security"
6 SHORT_DESC="File encryption utility"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://bcrypt.sourceforge.net/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://bcrypt.sourceforge.net/${TARBALL}"
12 TAGS="encrypt"
14 DEPENDS="zlib"
15 BUILD_DEPENDS="zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 make
22 cook_pick_manpages bcrypt.1
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $src/bcrypt $fs/usr/bin
30 }