diff options
author | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-30 00:01:38 +0000 |
commit | b7cd4b184f75d3d2b54b356e08f296df3a9afb38 (patch) | |
tree | dc5e84c1f7271cf0c8ec0221b5a22e48a884081a /testing/xfce4-session/PKGBUILD | |
parent | 4412991f6b4fd655fc1f51f8d79a0be0c10158b7 (diff) |
Mon Apr 30 00:01:38 UTC 2012
Diffstat (limited to 'testing/xfce4-session/PKGBUILD')
-rw-r--r-- | testing/xfce4-session/PKGBUILD | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/xfce4-session/PKGBUILD b/testing/xfce4-session/PKGBUILD new file mode 100644 index 000000000..3c313b5da --- /dev/null +++ b/testing/xfce4-session/PKGBUILD @@ -0,0 +1,43 @@ +# $Id: PKGBUILD 157699 2012-04-29 02:55:15Z foutrelis $ +# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> +# Contributor: tobias <tobias funnychar archlinux.org> + +pkgname=xfce4-session +pkgver=4.10.0 +pkgrel=1 +pkgdesc="A session manager for Xfce" +arch=('i686' 'x86_64') +url="http://www.xfce.org/" +license=('GPL2') +groups=('xfce4') +# keep xorg-server-utils for https://bugs.archlinux.org/task/21096 +# upower and consolekit for reboot/shutdown/hibernate/suspend +depends=('libxfce4ui' 'libgnome-keyring' 'libwnck' 'libsm' 'xorg-iceauth' + 'upower' 'consolekit' 'hicolor-icon-theme') +makedepends=('intltool') +optdepends=('fortune-mod: for xfce4-tips') +replaces=('xfce-utils') +options=('!libtool') +install=$pkgname.install +source=(http://archive.xfce.org/src/xfce/$pkgname/4.10/$pkgname-$pkgver.tar.bz2) +sha256sums=('bb8aa9a74c3d382840596fb4875144d66c7f3f47c8e9ee81d31e3428a72c46ce') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/xfce4 \ + --localstatedir=/var \ + --disable-static \ + --enable-libgnome-keyring \ + --disable-debug + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |