wok view vidalia/receipt @ rev 7744

Up: pidgin-musictracker to 0.4.22.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Dec 20 17:42:23 2010 +0000 (2010-12-20)
parents
children 0f6ba716b5f6
line source
1 # SliTaz package receipt.
3 PACKAGE="vidalia"
4 VERSION="0.2.10"
5 CATEGORY="network"
6 SHORT_DESC="Controller GUI for the Tor software."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="tor libQtGui libQtXml libegl-mesa"
9 BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://www.torproject.org/vidalia/"
12 # WGET_URL="https://www.torproject.org/vidalia/dist/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # Have to use wget for https stuff
18 wget --no-check-certificate https://www.torproject.org/vidalia/dist/$TARBALL
19 tar xvf $TARBALL
20 cd $src
21 mkdir build && cd build
22 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
23 make && make DESTDIR=$src/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/ $fs/usr
32 }