summaryrefslogtreecommitdiff
path: root/extra/xfce-utils/PKGBUILD
blob: abf7335251ab87c7cc95b0fe7360f33a52bdefcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# $Id: PKGBUILD 127773 2011-06-18 10:07:36Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: tobias <tobias funnychar archlinux.org>

pkgname=xfce-utils
pkgver=4.8.2
pkgrel=1
pkgdesc="Utilities for Xfce"
arch=(i686 x86_64)
license=('GPL2')
url="http://www.xfce.org/"
groups=('xfce4')
depends=('libxfce4ui' 'xorg-xinit' 'hicolor-icon-theme')
makedepends=('intltool')
optdepends=('perl:	for migration scripts'
            'xscreensaver: for locking screen with xflock4'
	    'gnome-screensaver: for locking screen with xflock4'
	    'xlockmore: for locking screen with xflock4')
options=('!libtool')
install=${pkgname}.install
source=(http://archive.xfce.org/src/xfce/${pkgname}/4.8/${pkgname}-${pkgver}.tar.bz2)
md5sums=('7f48198f4bee3edf7869064c2922c609')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr \
	--sysconfdir=/etc \
	--libexecdir=/usr/lib \
	--localstatedir=/var \
	--disable-static \
	--enable-dbus \
	--disable-debug \
	--with-vendor-info=ArchLinux # 	--enable-gen-doc \
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make DESTDIR=${pkgdir} install
}