wok rev 7819

Add asleap. Actively recover LEAP/PPTP passwords.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 25 11:37:06 2010 +0000 (2010-12-25)
parents 083fdd98c8b0
children 5554b127529a
files asleap/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/asleap/receipt	Sat Dec 25 11:37:06 2010 +0000
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="asleap"
     1.7 +VERSION="2.2"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Actively recover LEAP/PPTP passwords."
    1.10 +MAINTAINER="slaxemulator@gmail.com"
    1.11 +DEPENDS="openssl libpcap"
    1.12 +BUILD_DEPENDS="openssl-dev libpcap-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tgz"
    1.14 +WEB_SITE="http://www.willhackforsushi.com/Asleap.html"
    1.15 +WGET_URL="http://www.willhackforsushi.com/code/$PACKAGE/$VERSION/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	make
    1.22 +	install -D asleap $PWD/_pkg/usr/bin/asleap
    1.23 +	install -D genkeys $PWD/_pkg/usr/bin/genkeys
    1.24 +
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/usr
    1.31 +	cp -a $_pkg/usr/bin $fs/usr
    1.32 +}
    1.33 +