wok annotate orage/receipt @ rev 4970

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