wok view vidalia/receipt @ rev 14714

lib[a-n]*: add LICENSE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 11 10:41:23 2013 +0200 (2013-06-11)
parents 967f92512cf9
children b0c60d808e5c
line source
1 # SliTaz package receipt.
3 PACKAGE="vidalia"
4 VERSION="0.2.21"
5 CATEGORY="network"
6 SHORT_DESC="Controller GUI for the Tor software."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="https://www.torproject.org/vidalia/"
10 WGET_URL="https://www.torproject.org/dist/$PACKAGE/$TARBALL"
13 DEPENDS="tor libQtGui libQtXml libegl-mesa"
14 BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir build && cd build
21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/ $fs/usr
31 }