wok annotate john/receipt @ rev 10135

Up: gpodder to 2.15.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 17:29:41 2011 +0000 (2011-05-20)
parents aef2848d6394
children c34a2d4b16b6
rev   line source
pascal@2172 1 # SliTaz package receipt.
pascal@2172 2
pascal@2172 3 PACKAGE="john"
pascal@5785 4 VERSION="1.7.6"
pascal@2172 5 CATEGORY="system-tools"
pascal@2172 6 SHORT_DESC="Fast password cracker."
pascal@2172 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2172 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@2172 9 WEB_SITE="http://www.openwall.com/john/"
pascal@2172 10 WGET_URL="${WEB_SITE}g/$TARBALL"
pascal@2172 11 CONFIG_FILES="/etc/john"
pascal@2172 12
pascal@2172 13 # Rules to configure and make the package.
pascal@2172 14 compile_rules()
pascal@2172 15 {
pascal@2172 16 cd $src/src
pascal@2172 17 make clean generic
pascal@2172 18 }
pascal@2172 19
pascal@2172 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2172 21 genpkg_rules()
pascal@2172 22 {
pascal@2172 23 mkdir -p $fs/usr/sbin $fs/etc/john
pascal@2172 24 cp -a $src/run/john $fs/usr/sbin
pascal@2172 25 cp -a $src/run/mailer $fs/usr/sbin
pascal@2172 26 cp -a $src/run/unafs $fs/usr/sbin
pascal@2172 27 cp -a $src/run/unique $fs/usr/sbin
pascal@2172 28 cp -a $src/run/unshadow $fs/usr/sbin
pascal@2172 29 cp $src/run/john.conf $fs/etc/john
pascal@2172 30 }
pascal@2172 31