mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
867 B
Bash
27 lines
867 B
Bash
|
# $Id: PKGBUILD 36342 2009-04-21 04:42:22Z andyrtr $
|
||
|
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
|
||
|
|
||
|
pkgname=xfwm4
|
||
|
pkgver=4.6.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Xfce window manager, compatible with Gnome, Gnome2, KDE2, and KDE3"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('GPL2')
|
||
|
url="http://www.xfce.org/"
|
||
|
groups=('xfce4')
|
||
|
depends=("libxfcegui4>=$pkgver" 'libwnck' 'hicolor-icon-theme')
|
||
|
makedepends=('pkgconfig' 'intltool')
|
||
|
options=('!libtool')
|
||
|
install=${pkgname}.install
|
||
|
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('538ff2554a23bf877d336e573884da9a')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
||
|
--localstatedir=/var --disable-static \
|
||
|
--enable-compositor --enable-xsync || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
}
|