wok view arora/receipt @ rev 14789

Fix ownership and permissions for some files in some packages: adeskbar, ajaxterm, amsn, anacron, arora, asciiquarium, assaultcube-data, asterisk-sound-fr, asterisk-sound, attr-dev, attr, audacious, avidemux, awstats, bind-dev, binutils, blogotext, bootchart, btanks, bzip2-dev, c-client, cairo-dock.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 08 11:45:27 2013 +0300 (2013-07-08)
parents 7d28c312b2bf
children a5f6371c3254
line source
1 # SliTaz package receipt.
3 PACKAGE="arora"
4 VERSION="0.11.0"
5 CATEGORY="network"
6 SHORT_DESC="A cross-platform Qt4 WebKit browser"
7 MAINTAINER="devl547@gmail.com"
8 WEB_SITE="http://arora.googlecode.com/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$WEB_SITE/files/$TARBALL"
12 BUILD_DEPENDS="Qt4-dev qmake libsqlite"
13 DEPENDS="libQtGui libQtWebkit libQtDBus libQtXml libQtScript"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 qmake PREFIX="/usr/" &&
20 make $MAKEFLAGS &&
21 make INSTALL_ROOT=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp $src/arora $fs/usr/bin
29 find $fs -type f -name '*.desktop' -exec chmod a-x \{\} \;
30 }