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

Up: virtualbox-ose to 4.0.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 18 00:49:15 2011 +0000 (2011-02-18)
parents f1b0a76316ff
children d1768332cee0
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-dev-tools"
4 VERSION="4.8.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://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$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 || return 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 }