wok annotate orage/receipt @ rev 22308

updated xscavenger (1.4.4 -> 1.4.5)
author Hans-G?nter Theisgen
date Thu Nov 14 09:09:20 2019 +0100 (2019-11-14)
parents 6e8b1bcb30e2
children 804a303f31dc
rev   line source
erjo@4144 1 # SliTaz package receipt.
erjo@4144 2
erjo@4144 3 PACKAGE="orage"
Hans-G?nter@21644 4 VERSION="4.12.1"
erjo@4144 5 CATEGORY="office"
Hans-G?nter@21644 6 TAGS="office"
Hans-G?nter@21644 7 SHORT_DESC="Xfce calendar."
erjo@4144 8 MAINTAINER="erjo@slitaz.org"
pascal@15086 9 LICENSE="GPL2"
Hans-G?nter@21644 10 WEB_SITE="https://git.xfce.org/apps/orage/about/"
Hans-G?nter@21644 11
erjo@4144 12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
Hans-G?nter@21644 13 WGET_URL="https://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@4144 14
Hans-G?nter@21644 15 DEPENDS="atk dbus cairo libgio libnotify libxfcegui4 pango popt xfce4-panel"
Hans-G?nter@21644 16 BUILD_DEPENDS="dbus-dev gtk+-dev intltool libnotify-dev libxfcegui4-dev \
Hans-G?nter@21644 17 popt-dev xfce4-panel-dev"
pascal@15086 18
erjo@4144 19 # Rules to configure and make the package.
erjo@4144 20 compile_rules()
erjo@4144 21 {
Hans-G?nter@21644 22 ./configure \
Hans-G?nter@21644 23 --prefix=/usr \
Hans-G?nter@21644 24 --enable-dbus \
Hans-G?nter@21644 25 --enable-libnotify \
Hans-G?nter@21644 26 --libexecdir=/usr/lib/$PACKAGE \
erjo@4144 27 $CONFIGURE_ARGS &&
Hans-G?nter@21644 28 make &&
Hans-G?nter@21644 29 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 {
Hans-G?nter@21644 35 mkdir -p $fs/usr/share
Hans-G?nter@21644 36
Hans-G?nter@21644 37 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21644 38 cp -a $install/usr/lib $fs/usr
Hans-G?nter@21644 39 cp -a $install/usr/share/applications $fs/usr/share
Hans-G?nter@21644 40 cp -a $install/usr/share/xfce4 $fs/usr/share
Hans-G?nter@21644 41 cp -a $install/usr/share/orage $fs/usr/share
Hans-G?nter@21644 42 cp -a $install/usr/share/orage $fs/usr/share
Hans-G?nter@21644 43 cp -a $install/usr/share/dbus-1 $fs/usr/share
Hans-G?nter@21644 44 cp -a $install/usr/share/icons $fs/usr/share
erjo@4144 45 }
erjo@4144 46