PKGBUILDs/extra/xfce4-session/PKGBUILD
2009-10-09 21:23:22 -05:00

29 lines
1,000 B
Bash

# $Id: PKGBUILD 36343 2009-04-21 04:52:05Z andyrtr $
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
pkgname=xfce4-session
pkgver=4.6.1
pkgrel=1
pkgdesc="A session manager for Xfce"
arch=(i686 x86_64)
license=('GPL2')
url="http://www.xfce.org/"
groups=('xfce4')
depends=("libxfcegui4>=$pkgver" 'libwnck' 'hicolor-icon-theme')
makedepends=('pkgconfig' 'perlxml' 'xorg-server-utils' 'intltool')
optdepends=('fortune-mod: for xfce4-tips')
replaces=('xfce4-toys')
options=('!libtool')
install=${pkgname}.install
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
md5sums=('7628be41ed3511a20cff5673d9d39858')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
--localstatedir=/var --disable-static \
--enable-legacy-sm --disable-gnome --enable-session-screenshots \
--with-shutdown-style=auto || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}