wok annotate xfce4-dev-tools/receipt @ rev 12960

lostirc: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 31 20:20:10 2012 +0200 (2012-05-31)
parents 0b4cf0d9e1b5
children eb8067417980
rev   line source
erjo@5846 1 # SliTaz package receipt.
erjo@5846 2
erjo@5846 3 PACKAGE="xfce4-dev-tools"
slaxemulator@8046 4 VERSION="4.8.0"
erjo@5846 5 CATEGORY="development"
erjo@5846 6 SHORT_DESC="Xfce Developpers Tools "
erjo@5846 7 MAINTAINER="erjo@slitaz.org"
erjo@5846 8 DEPENDS="subversion autoconf automake intltool pkg-config"
erjo@5846 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@5846 10 WEB_SITE="http://xfce.org/~benny/projects/xfce4-dev-tools/"
slaxemulator@8046 11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@5846 12
erjo@5846 13 # Rules to configure and make the package.
erjo@5846 14 compile_rules()
erjo@5846 15 {
erjo@5846 16 cd $src
slaxemulator@9700 17 #patch -p1 -i $stuff/xdt-autogen-4.6.0.u || return 1
erjo@5846 18 ./configure \
erjo@5846 19 --prefix=/usr \
erjo@5846 20 --infodir=/usr/share/info \
erjo@5846 21 --mandir=/usr/share/man \
erjo@5846 22 $CONFIGURE_ARGS &&
erjo@5846 23 make && make DESTDIR=$PWD/_pkg install
erjo@5846 24 }
erjo@5846 25
erjo@5846 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@5846 27 genpkg_rules()
erjo@5846 28 {
erjo@5846 29 mkdir -p $fs/usr
erjo@5846 30 cp -a $_pkg/usr/bin $fs/usr
erjo@5846 31 cp -a $_pkg/usr/share $fs/usr
erjo@5846 32
erjo@5846 33 chmod 755 $fs/usr/bin/xdt-*
erjo@5846 34
erjo@5846 35 }
erjo@5846 36