mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
25 lines
768 B
Bash
25 lines
768 B
Bash
# $Id: PKGBUILD 52912 2009-09-23 06:21:51Z eric $
|
|
# Maintainer: aurelien <aurelien@archlinux.org>
|
|
# Contributor: Ben <contrasutra@myrealbox.com>
|
|
|
|
pkgname=xfce4-artwork
|
|
pkgver=0.1
|
|
pkgrel=5
|
|
pkgdesc="Backdrops for the Xfce4 desktop"
|
|
arch=(i686 x86_64)
|
|
license=("GPL2")
|
|
url="http://xfce-goodies.berlios.de/"
|
|
groups=('xfce4-goodies')
|
|
depends=('xfdesktop')
|
|
makedepends=('pkgconfig')
|
|
options=('!libtool')
|
|
source=(http://download2.berlios.de/xfce-goodies/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('b7612ee950fcf052e5acfacd0fda729f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
|
|
--localstatedir=/var --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|