wok-next annotate ophcrack/receipt @ rev 14471
Up: ophcrack (3.5.0)
author | Cedric Tissieres <slitaz@objectif-securite.ch> |
---|---|
date | Thu May 02 15:08:24 2013 +0200 (2013-05-02) |
parents | daa4afdd7597 |
children | 7c976f01185f |
rev | line source |
---|---|
slitaz@3277 | 1 # SliTaz package receipt. |
slitaz@3277 | 2 |
slitaz@3277 | 3 PACKAGE="ophcrack" |
slitaz@14471 | 4 VERSION="3.5.0" |
slitaz@3277 | 5 CATEGORY="security" |
slitaz@3277 | 6 SHORT_DESC="Windows password cracker" |
slitaz@3277 | 7 MAINTAINER="slitaz@objectif-securite.ch" |
slitaz@14471 | 8 DEPENDS="libQtCore libQtGui libqwt5-qt4 openssl gcc-lib-base expat" |
slitaz@14471 | 9 BUILD_DEPENDS="Qt4-dev qmake libqwt5-qt4-dev openssl-dev expat-dev" |
slitaz@3277 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slitaz@3277 | 11 WEB_SITE="http://ophcrack.sourceforge.net" |
slitaz@3277 | 12 WGET_URL="http://downloads.sourceforge.net/ophcrack/$TARBALL" |
jozee@4970 | 13 TAGS="password windows" |
slitaz@3277 | 14 |
slitaz@3277 | 15 # Rules to configure and make the package. |
slitaz@3277 | 16 compile_rules() |
slitaz@3277 | 17 { |
slitaz@3277 | 18 cd $src |
gokhlayeh@11573 | 19 ./configure --prefix=/usr $CONFIGURE_ARGS && |
slitaz@3277 | 20 make |
slitaz@3277 | 21 } |
slitaz@3277 | 22 |
slitaz@3277 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
slitaz@3277 | 24 genpkg_rules() |
slitaz@3277 | 25 { |
slitaz@3277 | 26 mkdir -p $fs/usr/bin |
slitaz@3277 | 27 cp -a $src/src/ophcrack $fs/usr/bin |
slitaz@3277 | 28 } |
slitaz@3277 | 29 |