mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
749 B
Bash
25 lines
749 B
Bash
|
# $Id: PKGBUILD 44702 2009-07-03 18:08:13Z jgc $
|
||
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
||
|
|
||
|
pkgname=gnome-themes
|
||
|
pkgver=2.26.3.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Default themes for GNOME2"
|
||
|
arch=(i686 x86_64)
|
||
|
license=('LGPL')
|
||
|
depends=('gtk-engines>=2.18.1' 'librsvg>=2.26.0')
|
||
|
makedepends=('intltool' 'icon-naming-utils')
|
||
|
url="http://www.gnome.org"
|
||
|
groups=('gnome')
|
||
|
replaces=('gtk-thinice-engine' 'clearlooks-gtk2')
|
||
|
source=(http://ftp.gnome.org/pub/gnome/sources/gnome-themes/2.26/${pkgname}-${pkgver}.tar.bz2)
|
||
|
md5sums=('2b9fbbf9911098b9eb061c05f175940a')
|
||
|
|
||
|
build() {
|
||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||
|
--localstatedir=/var || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR="${pkgdir}" install || return 1
|
||
|
}
|