wok-current view john/receipt @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | aef2848d6394 |
children | c34a2d4b16b6 |
line source
1 # SliTaz package receipt.
3 PACKAGE="john"
4 VERSION="1.7.6"
5 CATEGORY="system-tools"
6 SHORT_DESC="Fast password cracker."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.openwall.com/john/"
10 WGET_URL="${WEB_SITE}g/$TARBALL"
11 CONFIG_FILES="/etc/john"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src/src
17 make clean generic
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/sbin $fs/etc/john
24 cp -a $src/run/john $fs/usr/sbin
25 cp -a $src/run/mailer $fs/usr/sbin
26 cp -a $src/run/unafs $fs/usr/sbin
27 cp -a $src/run/unique $fs/usr/sbin
28 cp -a $src/run/unshadow $fs/usr/sbin
29 cp $src/run/john.conf $fs/etc/john
30 }