wok view arora/receipt @ rev 12007

arora: add desktop and icon from src tarball. add description file
author Samuel Trassare <samuel_trassare@yahoo.com>
date Mon Mar 05 13:59:52 2012 -0800 (2012-03-05)
parents 8e4c74abdf74
children 7d28c312b2bf
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://arora.googlecode.com/"
10 WGET_URL="$WEB_SITE/files/$TARBALL"
11 BUILD_DEPENDS="Qt4-dev qmake qt4-phonon libsqlite"
12 DEPENDS="qt4-phonon libQtGui libQtWebkit libQtDBus libQtXml libQtScript"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 qmake &&
19 make $MAKEFLAGS
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps $fs/usr/share/applications
26 cp $src/arora $fs/usr/bin
27 cp -a $src/src/data/32x32/arora.png $fs/usr/share/pixmaps
28 cp -a $src/src/arora.desktop $fs/usr/share/applications
29 }