wok annotate exo/receipt @ rev 8016

up: exo (0.6.0)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jan 20 02:12:53 2011 +0100 (2011-01-20)
parents 41ed3c4760c9
children 0874004b631d
rev   line source
erjo@5219 1 # SliTaz package receipt.
erjo@5219 2
erjo@5219 3 PACKAGE="exo"
erjo@8016 4 VERSION="0.6.0"
erjo@5219 5 CATEGORY="meta"
erjo@5219 6 SHORT_DESC="Xfce Exo library and tools"
erjo@5219 7 MAINTAINER="erjo@slitaz.org"
erjo@5219 8 DEPENDS="exo-tools libexo"
erjo@5219 9 BUILD_DEPENDS="libxfce4util-dev perl-uri startup-notification-dev hal-dev"
erjo@5219 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@5219 11 WEB_SITE="http://www.xfce.org"
erjo@8016 12 WGET_URL="http://archive.xfce.org/xfce/4.8/src/$TARBALL"
erjo@5219 13
erjo@5219 14 # Rules to configure and make the package.
erjo@5219 15 compile_rules()
erjo@5219 16 {
erjo@5219 17
erjo@5219 18 #test -d $PACKAGE-$VERSION && mv exo* $PACKAGE-$VERSION
erjo@5219 19 cd $src
pascal@6054 20 patch -p1 -i ../stuff/helpers.rc.u
erjo@5219 21 ./configure \
erjo@5219 22 --prefix=/usr \
erjo@5219 23 --sysconfdir=/etc \
erjo@5219 24 --libexecdir=/usr/lib/libexo \
erjo@5219 25 --enable-notifications \
erjo@5219 26 --enable-hal \
erjo@5219 27 --disable-debug \
erjo@5219 28 --mandir=/usr/share/man \
erjo@5219 29 --disable-python \
erjo@5219 30 $CONFIGURE_ARGS && \
erjo@5219 31 make && make DESTDIR=$PWD/_pkg install
erjo@5219 32 }
erjo@5219 33
erjo@5219 34 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@5219 35 genpkg_rules()
erjo@5219 36 {
erjo@5219 37 mkdir $fs/usr
erjo@5825 38 for pkg in libexo libexo-dev exo-tools
erjo@5825 39 do
erjo@5825 40 tazwok cook $pkg
erjo@5825 41 done
erjo@5219 42 }