wok-4.x view ophcrack/receipt @ rev 12477

Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author Stanislas Leduc <shann@slitaz.org>
date Sun Apr 02 14:34:44 2023 +0000 (14 months ago)
parents b7319995b37e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="ophcrack"
4 VERSION="3.4.0"
5 CATEGORY="security"
6 SHORT_DESC="Windows password cracker"
7 MAINTAINER="slitaz@objectif-securite.ch"
8 DEPENDS="libQtCore libQtGui libqwt5-qt4 openssl gcc-lib-base"
9 BUILD_DEPENDS="Qt4-dev qmake libqwt5-qt4-dev openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://ophcrack.sourceforge.net"
12 WGET_URL="http://downloads.sourceforge.net/ophcrack/$TARBALL"
13 TAGS="password windows"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
27 cp -a $src/src/ophcrack $fs/usr/bin
28 cp -a $src/src/gui/pixmaps/os_icon.png \
29 $fs/usr/share/pixmaps/$PACKAGE.png
30 }