diff options
Diffstat (limited to 'testing/xfce4-panel/PKGBUILD')
-rw-r--r-- | testing/xfce4-panel/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/xfce4-panel/PKGBUILD b/testing/xfce4-panel/PKGBUILD new file mode 100644 index 000000000..5eca0d699 --- /dev/null +++ b/testing/xfce4-panel/PKGBUILD @@ -0,0 +1,41 @@ +# $Id: PKGBUILD 157689 2012-04-29 02:54:59Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: tobias <tobias funnychar archlinux.org> + +pkgname=xfce4-panel +pkgver=4.10.0 +pkgrel=1 +pkgdesc="Panel for the Xfce desktop environment" +arch=('i686' 'x86_64') +url="http://www.xfce.org/" +license=('GPL2') +groups=('xfce4') +depends=('exo' 'garcon' 'libxfce4ui' 'libwnck' 'libsm' 'hicolor-icon-theme' + 'desktop-file-utils') +makedepends=('intltool' 'gtk-doc') +options=('!libtool') +install=$pkgname.install +source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2) +sha256sums=('3321f998af2bbd14ba68654a8881774f6ea2ec4f1a3544598e7f47d3ed0009b9') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --enable-gio-unix \ + --enable-gtk-doc \ + --disable-debug + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |