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