wok-6.x annotate ophcrack/receipt @ rev 23212
updated nagios-nsca (2.9.1 -> 2.9.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 21 14:45:16 2020 +0100 (2020-03-21) |
parents | 7c976f01185f |
children | 370da83187ab |
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" |
pascal@15002 | 8 LICENSE="GPL2" |
slitaz@3277 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slitaz@3277 | 10 WEB_SITE="http://ophcrack.sourceforge.net" |
slitaz@3277 | 11 WGET_URL="http://downloads.sourceforge.net/ophcrack/$TARBALL" |
jozee@4970 | 12 TAGS="password windows" |
slitaz@3277 | 13 |
pascal@15002 | 14 DEPENDS="libQtCore libQtGui libqwt5-qt4 openssl expat gcc-lib-base" |
pascal@15002 | 15 BUILD_DEPENDS="Qt4-dev qmake libqwt5-qt4-dev openssl-dev expat-dev" |
pascal@15002 | 16 |
slitaz@3277 | 17 # Rules to configure and make the package. |
slitaz@3277 | 18 compile_rules() |
slitaz@3277 | 19 { |
slitaz@3277 | 20 cd $src |
gokhlayeh@11573 | 21 ./configure --prefix=/usr $CONFIGURE_ARGS && |
slitaz@3277 | 22 make |
slitaz@3277 | 23 } |
slitaz@3277 | 24 |
slitaz@3277 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
slitaz@3277 | 26 genpkg_rules() |
slitaz@3277 | 27 { |
slitaz@3277 | 28 mkdir -p $fs/usr/bin |
slitaz@3277 | 29 cp -a $src/src/ophcrack $fs/usr/bin |
slitaz@3277 | 30 } |
slitaz@3277 | 31 |