wok annotate john/receipt @ rev 2353

cyrus-imapd: typo in init script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 05 08:35:57 2009 +0000 (2009-03-05)
parents
children c61f4a950e53
rev   line source
pascal@2172 1 # SliTaz package receipt.
pascal@2172 2
pascal@2172 3 PACKAGE="john"
pascal@2172 4 VERSION="1.7.3.1"
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