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

Compat: make local-pack.functions in slitaz-i18n compatible with tazwok
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Dec 10 05:03:51 2011 +0100 (2011-12-10)
parents 0b4cf0d9e1b5
children eb8067417980
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 }