wok annotate xfce4-dev-tools/receipt @ rev 6961
xorg-server: add config dir
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Oct 26 13:15:37 2010 +0200 (2010-10-26) |
parents | |
children | 8c0fb3d8889c |
rev | line source |
---|---|
erjo@5846 | 1 # SliTaz package receipt. |
erjo@5846 | 2 |
erjo@5846 | 3 PACKAGE="xfce4-dev-tools" |
erjo@5846 | 4 VERSION="4.6.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/" |
erjo@5846 | 11 WGET_URL="http://www.p0llux.be/xfce/archive/xfce/4.6.2/src/$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 |
erjo@5846 | 17 patch -p1 -i ../stuff/xdt-autogen-4.6.0.u || exit 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 |