wok-current rev 861
Add tor + libevent + libevent-dev + wpa_supplicant
author | Tom Frankland <0dddba11@googlemail.com> |
---|---|
date | Thu Jun 05 19:06:18 2008 +0000 (2008-06-05) |
parents | 6e606489151e |
children | 8ad9a6e6b326 |
files | libevent-dev/receipt libevent/receipt tor/receipt wpa_supplicant/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libevent-dev/receipt Thu Jun 05 19:06:18 2008 +0000 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libevent-dev" 1.7 +VERSION="1.4.3" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="An event notification library." 1.10 +MAINTAINER="0dddba11@googlemail.com" 1.11 +WANTED="libevent" 1.12 +WEB_SITE="http://www.monkey.org/~provos/libevent/" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + mkdir -p $fs/usr/lib 1.18 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.19 + cp -a $_pkg/usr/include $fs/usr 1.20 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libevent/receipt Thu Jun 05 19:06:18 2008 +0000 2.3 @@ -0,0 +1,29 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libevent" 2.7 +VERSION="1.4.3" 2.8 +CATEGORY="system-tools" 2.9 +SHORT_DESC="An event notification library." 2.10 +MAINTAINER="0dddba11@googlemail.com" 2.11 +DEPENDS="" 2.12 +TARBALL="$PACKAGE-$VERSION-stable.tar.gz" 2.13 +WEB_SITE="http://www.monkey.org/~provos/libevent/" 2.14 +WGET_URL="http://www.monkey.org/~provos/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + mv $PACKAGE-$VERSION-stable $PACKAGE-$VERSION 2.20 + cd $src 2.21 + ./configure --prefix=/usr \ 2.22 + --mandir=/usr/share/man $CONFIGURE_ARGS 2.23 + make 2.24 + make DESTDIR=$PWD/_pkg install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr/lib 2.31 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.32 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/tor/receipt Thu Jun 05 19:06:18 2008 +0000 3.3 @@ -0,0 +1,35 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="tor" 3.7 +VERSION="0.1.2.19" 3.8 +CATEGORY="network" 3.9 +SHORT_DESC="An anonymizing overlay network for TCP." 3.10 +MAINTAINER="0dddba11@googlemail.com" 3.11 +DEPENDS="libevent openssl zlib" 3.12 +BUILD_DEPENDS="libevent-dev openssl-dev zlib-dev" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://www.torproject.org/" 3.15 +WGET_URL="http://www.torproject.org/dist/$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 \ 3.22 + --prefix=/usr \ 3.23 + --sysconfdir=/etc \ 3.24 + --mandir=/usr/share/man \ 3.25 + $CONFIGURE_ARGS 3.26 + make 3.27 + make DESTDIR=$PWD/_pkg install 3.28 +} 3.29 + 3.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.31 +genpkg_rules() 3.32 +{ 3.33 + mkdir -p $fs/usr 3.34 + cp -a $_pkg/usr/bin $fs/usr 3.35 + 3.36 + # config file. 3.37 + cp -a $_pkg/etc $fs 3.38 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/wpa_supplicant/receipt Thu Jun 05 19:06:18 2008 +0000 4.3 @@ -0,0 +1,31 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="wpa_supplicant" 4.7 +VERSION="0.5.10" 4.8 +CATEGORY="utilities" 4.9 +SHORT_DESC="WPA Supplicant with support for WPA and WPA2" 4.10 +MAINTAINER="0dddba11@googlemail.com" 4.11 +DEPENDS="" 4.12 +BUILD_DEPENDS="openssl-dev" 4.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 4.14 +WEB_SITE="http://hostap.epitest.fi/wpa_supplicant/" 4.15 +WGET_URL="http://hostap.epitest.fi/releases/$TARBALL" 4.16 + 4.17 +# Rules to configure and make the package. 4.18 +compile_rules() 4.19 +{ 4.20 + cd $src 4.21 + cp -a ./defconfig ./.config 4.22 + make 4.23 +} 4.24 + 4.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.26 +genpkg_rules() 4.27 +{ 4.28 + mkdir -p $fs/usr/bin 4.29 + mkdir -p $fs/etc 4.30 + cp -a $src/wpa_cli $fs/usr/bin 4.31 + cp -a $src/wpa_supplicant $fs/usr/bin 4.32 + cp -a $src/wpa_supplicant.conf $fs/etc 4.33 +} 4.34 +