wok-6.x rev 6387
merge
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Sep 22 14:54:49 2010 +0000 (2010-09-22) |
parents | a41ab4cbb994 83e7bd2d484e |
children | 9130dc5943c6 |
files |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/aspell-da/receipt Wed Sep 22 14:54:49 2010 +0000 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="aspell-da" 1.7 +VERSION="1.4.42-1" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Danish aspell dictionary." 1.10 +MAINTAINER="paul@slitaz.org" 1.11 +DEPENDS="aspell" 1.12 +BUILD_DEPENDS="aspell aspell-dev" 1.13 +SOURCE="aspell5-da" 1.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 1.15 +WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" 1.16 +WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/da/$TARBALL" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + ./configure && \ 1.23 + make && make DESTDIR=$PWD/_pkg install 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr/lib 1.30 + cp -a $_pkg/usr/lib/* $fs/usr/lib 1.31 +} 1.32 +
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/polipo/receipt Wed Sep 22 14:54:49 2010 +0000 2.3 @@ -0,0 +1,48 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="polipo" 2.7 +VERSION="1.0.4.1" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Small and fast caching web proxy." 2.10 +MAINTAINER="paul@slitaz.org" 2.11 +DEPENDS="" 2.12 +BUILD_DEPENDS="texinfo" 2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.14 +WEB_SITE="http://www.pps.jussieu.fr/~jch/software/polipo/" 2.15 +WGET_URL="http://freehaven.net/~chrisd/polipo/$TARBALL" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd $src 2.21 + make all 2.22 +} 2.23 + 2.24 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.25 +genpkg_rules() 2.26 +{ 2.27 + mkdir -p $fs/usr/bin $fs/etc/polipo $fs/usr/share/polipo/www/doc 2.28 + cp -a $src/polipo $fs/usr/bin 2.29 + cp -a $src/config.sample $fs/etc/polipo/config 2.30 + cp -a $src/forbidden.sample $fs/etc/polipo/forbidden 2.31 + cp -a $src/localindex.html $fs/usr/share/polipo/www/index.html 2.32 + cp -a $src/html/* $fs/usr/share/polipo/www/doc 2.33 +} 2.34 + 2.35 +# Create a disk cache. 2.36 +post_install() 2.37 +{ 2.38 + echo -n "Creating disk cache..." 2.39 + mkdir $1/var/cache/polipo 2.40 + chown tux.tux $1/var/cache/polipo 2.41 + status 2.42 +} 2.43 + 2.44 +# Remove disk cache. 2.45 +post_remove() 2.46 +{ 2.47 + echo -n "Removing disk cache..." 2.48 + rm -rf $1/var/cache/polipo 2.49 + status 2.50 +} 2.51 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/vidalia/receipt Wed Sep 22 14:54:49 2010 +0000 3.3 @@ -0,0 +1,33 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="vidalia" 3.7 +VERSION="0.2.10" 3.8 +CATEGORY="network" 3.9 +SHORT_DESC="Controller GUI for the Tor software." 3.10 +MAINTAINER="paul@slitaz.org" 3.11 +DEPENDS="tor libQtGui libQtXml libegl-mesa" 3.12 +BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WEB_SITE="https://www.torproject.org/vidalia/" 3.15 +# WGET_URL="https://www.torproject.org/vidalia/dist/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + # Have to use wget for https stuff 3.21 + wget --no-check-certificate https://www.torproject.org/vidalia/dist/$TARBALL 3.22 + tar xvf $TARBALL 3.23 + cd $src 3.24 + mkdir build && cd build 3.25 + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && 3.26 + make && make DESTDIR=$src/_pkg install 3.27 +} 3.28 + 3.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.30 +genpkg_rules() 3.31 +{ 3.32 + mkdir -p $fs/usr 3.33 + cp -a $_pkg/usr/bin $fs/usr 3.34 + cp -a $_pkg/usr/share/ $fs/usr 3.35 +} 3.36 +