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

Up pcre and pcre-dev to version 8.35
author Yuri Pourre <yuripourre@gmail.com>
date Thu Jul 10 22:42:36 2014 -0300 (2014-07-10)
parents eb8067417980
children c86e41198e76
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-dev-tools"
4 VERSION="4.11.0"
5 CATEGORY="development"
6 SHORT_DESC="Xfce Developpers Tools "
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
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 DEPENDS="subversion autoconf automake intltool pkg-config"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 #patch -p1 -i $stuff/xdt-autogen-4.6.0.u || return 1
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share $fs/usr
35 chmod 755 $fs/usr/bin/xdt-*
36 }