mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
728 B
Bash
24 lines
728 B
Bash
# $Id: PKGBUILD 39811 2009-05-21 13:52:59Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgname=gtk-engines
|
|
pkgver=2.18.2
|
|
pkgrel=1
|
|
pkgdesc="Theme engines for GTK+ 2"
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
depends=('gtk2>=2.16.0')
|
|
makedepends=('pkgconfig' 'intltool')
|
|
options=('!libtool')
|
|
url="http://live.gnome.org/GnomeArt"
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.18/${pkgname}-${pkgver}.tar.bz2)
|
|
conflicts=('lighthouse-gtk2' 'clearlooks-gtk2')
|
|
replaces=('lighthouse-gtk2')
|
|
md5sums=('68c7d012923bf40fab47765e82de0676')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-animation || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|