wok view xfce4-dev-tools/receipt @ rev 6734

Up: libgnomecanvas to 2.30.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 16 18:16:16 2010 +0000 (2010-10-16)
parents
children 8c0fb3d8889c
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-dev-tools"
4 VERSION="4.6.0"
5 CATEGORY="development"
6 SHORT_DESC="Xfce Developpers Tools "
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="subversion autoconf automake intltool pkg-config"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://xfce.org/~benny/projects/xfce4-dev-tools/"
11 WGET_URL="http://www.p0llux.be/xfce/archive/xfce/4.6.2/src/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 patch -p1 -i ../stuff/xdt-autogen-4.6.0.u || exit 1
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
33 chmod 755 $fs/usr/bin/xdt-*
35 }