# HG changeset patch # User Pascal Bellard # Date 1234095261 0 # Node ID aef2848d63948f7745c8fc214ba12df9049efda9 # Parent 3c4e4aa7351194a69ea37fa386cc859bca97bfd1 Add john the ripper diff -r 3c4e4aa73511 -r aef2848d6394 john/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/john/receipt Sun Feb 08 12:14:21 2009 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="john" +VERSION="1.7.3.1" +CATEGORY="system-tools" +SHORT_DESC="Fast password cracker." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.openwall.com/john/" +WGET_URL="${WEB_SITE}g/$TARBALL" +CONFIG_FILES="/etc/john" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src/src + make clean generic +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/sbin $fs/etc/john + cp -a $src/run/john $fs/usr/sbin + cp -a $src/run/mailer $fs/usr/sbin + cp -a $src/run/unafs $fs/usr/sbin + cp -a $src/run/unique $fs/usr/sbin + cp -a $src/run/unshadow $fs/usr/sbin + cp $src/run/john.conf $fs/etc/john +} +