diff options
Diffstat (limited to 'xfce')
-rw-r--r-- | xfce/xfce4-dev-tools/.footprint | 13 | ||||
-rw-r--r-- | xfce/xfce4-dev-tools/.md5sum | 1 | ||||
-rwxr-xr-x | xfce/xfce4-dev-tools/Pkgfile | 22 |
3 files changed, 36 insertions, 0 deletions
diff --git a/xfce/xfce4-dev-tools/.footprint b/xfce/xfce4-dev-tools/.footprint new file mode 100644 index 000000000..2ac0d9463 --- /dev/null +++ b/xfce/xfce4-dev-tools/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/xdt-autogen +-rwxr-xr-x root/root usr/bin/xdt-commit +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/xfce4/ +drwxr-xr-x root/root usr/share/xfce4/dev-tools/ +drwxr-xr-x root/root usr/share/xfce4/dev-tools/m4macros/ +-rw-r--r-- root/root usr/share/xfce4/dev-tools/m4macros/xdt-depends.m4 +-rw-r--r-- root/root usr/share/xfce4/dev-tools/m4macros/xdt-features.m4 +-rw-r--r-- root/root usr/share/xfce4/dev-tools/m4macros/xdt-i18n.m4 +-rw-r--r-- root/root usr/share/xfce4/dev-tools/m4macros/xdt-python.m4 +-rw-r--r-- root/root usr/share/xfce4/dev-tools/m4macros/xdt-xfce.m4 diff --git a/xfce/xfce4-dev-tools/.md5sum b/xfce/xfce4-dev-tools/.md5sum new file mode 100644 index 000000000..3258bddf3 --- /dev/null +++ b/xfce/xfce4-dev-tools/.md5sum @@ -0,0 +1 @@ +c9587fa78e877eee858a33391d0afd62 xfce4-dev-tools-4.6.0.tar.bz2 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 +} + |