wok view orage/receipt @ rev 4980

fix: opera URL, RAM size and decrease overall pkg size
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 15:26:00 2010 +0000 (2010-02-24)
parents d563944db906
children 5b44af8c1257
line source
1 # SliTaz package receipt.
3 PACKAGE="orage"
4 VERSION="4.6.1"
5 CATEGORY="office"
6 SHORT_DESC="Xfce calendar"
7 MAINTAINER="erjo@slitaz.org"
8 DEPEND="libxfcegui4 libnotify dbus"
9 BUILD_DEPEND="libxfcegui4-dev libnotify-dev dbus-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org"
12 WGET_URL="http://www.tx-us.xfce.org/archive/xfce-4.6.1/src/$TARBALL"
13 TAGS="office"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --enable-dbus \
22 --enable-libnotify \
23 --libexecdir=/usr/lib/$PACKAGE \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib $fs/usr
34 cp -a $_pkg/usr/share/applications $fs/usr/share
35 cp -a $_pkg/usr/share/xfce4 $fs/usr/share
36 cp -a $_pkg/usr/share/orage $fs/usr/share
37 cp -a $_pkg/usr/share/orage $fs/usr/share
38 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
39 cp -a $_pkg/usr/share/icons $fs/usr/share
40 }