diff options
Diffstat (limited to 'xfce/xfce4-dev-tools/Pkgfile')
-rwxr-xr-x | xfce/xfce4-dev-tools/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/xfce/xfce4-dev-tools/Pkgfile b/xfce/xfce4-dev-tools/Pkgfile new file mode 100755 index 000000000..53b6528a3 --- /dev/null +++ b/xfce/xfce4-dev-tools/Pkgfile @@ -0,0 +1,22 @@ +# Description: Environnement de developpement pour Xfce +# URL: http://www.foo-projects.org/~benny/projects/xfce4-dev-tools/index.html +# Maintainer: NuTyX core team +# Packager: fred.galusik at gmail dot com +# Depends on: autoconf, automake, gettext, intltool, libtool + +name=xfce4-dev-tools +version=4.6.0 +release=2 +source=(http://www.xfce.org/archive/xfce-4.6.1/src/$name-$version.tar.bz2) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-static + make + make DESTDIR=$PKG install +} + |