wok annotate vidalia/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents b0c60d808e5c
children b9659e3c2111
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"
pascal@20689 10 WEB_SITE="https://web.archive.org/web/20141121142650/https://www.torproject.org/projects/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