wok annotate vidalia/receipt @ rev 15416

Up: thunderbird-langpack-en_US (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:37 2013 +0100 (2013-11-03)
parents 68ec33732967
children c49ffc024a6c
rev   line source
paul@6384 1 # SliTaz package receipt.
paul@6384 2
paul@6384 3 PACKAGE="vidalia"
monghitri@13992 4 VERSION="0.2.21"
paul@6384 5 CATEGORY="network"
paul@6384 6 SHORT_DESC="Controller GUI for the Tor software."
paul@6384 7 MAINTAINER="paul@slitaz.org"
pascal@15216 8 LICENSE="GPL2 LGPL3"
slaxemulator@10765 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@10765 10 WEB_SITE="https://www.torproject.org/vidalia/"
monghitri@13992 11 WGET_URL="https://www.torproject.org/dist/$PACKAGE/$TARBALL"
monghitri@13992 12
paul@6384 13 DEPENDS="tor libQtGui libQtXml libegl-mesa"
pascal@10684 14 BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa openssl-dev"
paul@6384 15
paul@6384 16 # Rules to configure and make the package.
paul@6384 17 compile_rules()
paul@6384 18 {
paul@6384 19 cd $src
paul@6384 20 mkdir build && cd build
paul@6384 21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
slaxemulator@10765 22 make && make DESTDIR=$DESTDIR install
paul@6384 23 }
paul@6384 24
paul@6384 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@6384 26 genpkg_rules()
paul@6384 27 {
paul@6384 28 mkdir -p $fs/usr
pascal@15216 29 cp -a $install/usr/bin $fs/usr
pascal@15216 30 cp -a $install/usr/share/ $fs/usr
paul@6384 31 }
paul@6384 32