wok annotate orage/receipt @ rev 19446
dillo: add stuff/fltk-1.3.3.u
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 15 18:21:21 2016 +0200 (2016-10-15) |
parents | 8e92fa1484da |
children | 6e8b1bcb30e2 |
rev | line source |
---|---|
erjo@4144 | 1 # SliTaz package receipt. |
erjo@4144 | 2 |
erjo@4144 | 3 PACKAGE="orage" |
slaxemulator@8901 | 4 VERSION="4.8.1" |
erjo@4144 | 5 CATEGORY="office" |
erjo@4144 | 6 SHORT_DESC="Xfce calendar" |
erjo@4144 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15086 | 8 LICENSE="GPL2" |
erjo@4144 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@4144 | 10 WEB_SITE="http://www.xfce.org" |
slaxemulator@8108 | 11 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL" |
jozee@4970 | 12 TAGS="office" |
erjo@4144 | 13 |
pascal@15086 | 14 DEPENDS="libxfcegui4 libnotify dbus atk libgio pango cairo libnotify \ |
pascal@15086 | 15 xfce4-panel popt" |
pascal@15086 | 16 BUILD_DEPENDS="libxfcegui4-dev xfce4-panel-dev libnotify-dev dbus-dev \ |
pascal@15086 | 17 intltool popt-dev gtk+-dev" |
pascal@15086 | 18 |
erjo@4144 | 19 # Rules to configure and make the package. |
erjo@4144 | 20 compile_rules() |
erjo@4144 | 21 { |
erjo@4144 | 22 cd $src |
erjo@4144 | 23 ./configure \ |
erjo@4144 | 24 --prefix=/usr \ |
erjo@4144 | 25 --enable-dbus \ |
erjo@4144 | 26 --enable-libnotify \ |
slaxemulator@8108 | 27 --libexecdir=/usr/lib/$PACKAGE \ |
erjo@4144 | 28 $CONFIGURE_ARGS && |
pascal@15086 | 29 make && make DESTDIR=$DESTDIR install |
erjo@4144 | 30 } |
erjo@4144 | 31 |
erjo@4144 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4144 | 33 genpkg_rules() |
erjo@4144 | 34 { |
erjo@4144 | 35 mkdir -p $fs/usr/share |
pascal@15086 | 36 cp -a $install/usr/bin $fs/usr |
pascal@15086 | 37 cp -a $install/usr/lib $fs/usr |
pascal@15086 | 38 cp -a $install/usr/share/applications $fs/usr/share |
pascal@15086 | 39 cp -a $install/usr/share/xfce4 $fs/usr/share |
pascal@15086 | 40 cp -a $install/usr/share/orage $fs/usr/share |
pascal@15086 | 41 cp -a $install/usr/share/orage $fs/usr/share |
pascal@15086 | 42 cp -a $install/usr/share/dbus-1 $fs/usr/share |
pascal@15086 | 43 cp -a $install/usr/share/icons $fs/usr/share |
erjo@4144 | 44 } |
erjo@4144 | 45 |