wok-4.x rev 3277
Add: ophcrack, libqwt5-qt4, libqwt5-qt4-dev
author | Cedric Tissieres <slitaz@objectif-securite.ch> |
---|---|
date | Tue Jun 02 09:43:25 2009 +0200 (2009-06-02) |
parents | 28253bd3176d |
children | 4463b95d50a9 |
files | libqwt5-qt4-dev/receipt libqwt5-qt4/receipt ophcrack/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libqwt5-qt4-dev/receipt Tue Jun 02 09:43:25 2009 +0200 1.3 @@ -0,0 +1,24 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libqwt5-qt4-dev" 1.7 +VERSION="5.2.0" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Lib Qt Widgets for Technical applications" 1.10 +MAINTAINER="slitaz@objectif-securite.ch" 1.11 +DEPENDS="qt-x11-opensource-src libqwt5-qt4" 1.12 +TARBALL="qwt-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://qwt.sourceforge.net" 1.14 +WANTED="libqwt5-qt4" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/include 1.20 + cp -a $PWD/_pkg/usr/local/qwt-$VERSION/include/*.h $fs/usr/include 1.21 +} 1.22 + 1.23 +# clean commands for Tazwok. 1.24 +clean_wok() 1.25 +{ 1.26 + rm -rf $WOK/$PACKAGE/_pkg 1.27 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libqwt5-qt4/receipt Tue Jun 02 09:43:25 2009 +0200 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libqwt5-qt4" 2.7 +VERSION="5.2.0" 2.8 +CATEGORY="graphics" 2.9 +SHORT_DESC="Lib Qt Widgets for Technical applications" 2.10 +MAINTAINER="slitaz@objectif-securite.ch" 2.11 +DEPENDS="libQtCore libQtGui" 2.12 +BUILD_DEPENDS="qt-x11-opensource-src" 2.13 +TARBALL="qwt-$VERSION.tar.bz2" 2.14 +WEB_SITE="http://qwt.sourceforge.net" 2.15 +WGET_URL="http://switch.dl.sourceforge.net/sourceforge/qwt/$TARBALL" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd qwt-$VERSION 2.21 + qmake 2.22 + make && 2.23 + make INSTALL_ROOT=$PWD/../_pkg install 2.24 +} 2.25 + 2.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.27 +genpkg_rules() 2.28 +{ 2.29 + mkdir -p $fs/usr/lib 2.30 + cp -a $PWD/_pkg/usr/local/qwt-$VERSION/lib/libqwt.so* $fs/usr/lib 2.31 +} 2.32 + 2.33 +# clean commands for Tazwok. 2.34 +clean_wok() 2.35 +{ 2.36 + rm -rf $WOK/$PACKAGE/_pkg 2.37 + rm -rf $WOK/$PACKAGE/qwt-$VERSION 2.38 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/ophcrack/receipt Tue Jun 02 09:43:25 2009 +0200 3.3 @@ -0,0 +1,28 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="ophcrack" 3.7 +VERSION="3.3.0" 3.8 +CATEGORY="security" 3.9 +SHORT_DESC="Windows password cracker" 3.10 +MAINTAINER="slitaz@objectif-securite.ch" 3.11 +DEPENDS="libQtCore libQtGui libqwt5-qt4 openssl" 3.12 +BUILD_DEPENDS="qt-x11-opensource-src libqwt5-qt4-dev openssl-dev" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 3.14 +WEB_SITE="http://ophcrack.sourceforge.net" 3.15 +WGET_URL="http://downloads.sourceforge.net/ophcrack/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure --prefix=/usr 3.22 + make 3.23 +} 3.24 + 3.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.26 +genpkg_rules() 3.27 +{ 3.28 + mkdir -p $fs/usr/bin 3.29 + cp -a $src/src/ophcrack $fs/usr/bin 3.30 +} 3.31 +