mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
631 B
Bash
23 lines
631 B
Bash
|
# $Id: PKGBUILD 50217 2009-08-24 18:15:59Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gnome-backgrounds
|
||
|
pkgver=2.24.1
|
||
|
pkgrel=2
|
||
|
pkgdesc="Background images and data for GNOME"
|
||
|
arch=(any)
|
||
|
makedepends=('intltool')
|
||
|
url="http://www.gnome.org"
|
||
|
license=('GPL')
|
||
|
groups=('gnome')
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.24/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('28e09fcdeef5616bc612b36e5068e413')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|