wok rev 6384

Add vidalia
author Paul Issott <paul@slitaz.org>
date Wed Sep 22 19:43:01 2010 +0000 (2010-09-22)
parents 7e4d83d8ae14
children 83e7bd2d484e
files vidalia/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/vidalia/receipt	Wed Sep 22 19:43:01 2010 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="vidalia"
     1.7 +VERSION="0.2.10"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Controller GUI for the Tor software."
    1.10 +MAINTAINER="paul@slitaz.org"
    1.11 +DEPENDS="tor libQtGui libQtXml libegl-mesa"
    1.12 +BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="https://www.torproject.org/vidalia/"
    1.15 +# WGET_URL="https://www.torproject.org/vidalia/dist/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	# Have to use wget for https stuff
    1.21 +	wget --no-check-certificate https://www.torproject.org/vidalia/dist/$TARBALL
    1.22 +	tar xvf $TARBALL
    1.23 +	cd $src
    1.24 +	mkdir build && cd build
    1.25 +	cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
    1.26 +	make && make DESTDIR=$src/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr
    1.33 +	cp -a $_pkg/usr/bin $fs/usr
    1.34 +	cp -a $_pkg/usr/share/ $fs/usr
    1.35 +}
    1.36 +