mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
27 lines
893 B
Bash
27 lines
893 B
Bash
# $Id: PKGBUILD 36311 2009-04-20 22:25:29Z andyrtr $
|
|
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
|
|
|
|
pkgname=xfdesktop
|
|
pkgver=4.6.1
|
|
pkgrel=1
|
|
pkgdesc="A desktop manager for Xfce"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://www.xfce.org/"
|
|
groups=('xfce4')
|
|
depends=("libxfce4menu>=$pkgver" 'thunar>=1.0.1' 'hicolor-icon-theme')
|
|
makedepends=("xfce4-panel>=$pkgver" 'pkgconfig' 'intltool')
|
|
conflicts=('xfce4-menueditor')
|
|
replaces=('xfce4-menueditor')
|
|
options=('!libtool')
|
|
install=${pkgname}.install
|
|
source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('ae15cacc3e3834cca7238a8e1035c50d')
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|