summaryrefslogtreecommitdiff
path: root/community/gtk-aurora-engine/PKGBUILD
blob: 8ec53e4aab00dab4acc8ed9820f9a0c551a58f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Contributor: Dmitry N. Shilov <stormblast@land.ru>
# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>

pkgname=gtk-aurora-engine
pkgver=1.5.1
pkgrel=2
pkgdesc="gtk-engine: latest member of the clearlooks family"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438"
license=('GPL')
depends=('gtk2')
makedepends=('pkgconfig')
options=('!libtool')
source=(http://www.gnome-look.org/CONTENT/content-files/56438-aurora-${pkgver}.tar.bz2)
md5sums=('5eeea57c5938306ad7ccfc7cd71d009d')

build() {
	cd ${srcdir}
	tar xzf aurora-gtk-engine-1.5.tar.gz -C ${srcdir}
	cd ${srcdir}/aurora-1.5

	./configure --prefix=/usr --enable-animation
	make || return 1
}

package() {
	cd ${srcdir}/aurora-1.5
	make DESTDIR=${pkgdir} install
	mkdir -p ${pkgdir}/usr/share/themes
	tar xjf ../Aurora.tar.bz2 -C ${pkgdir}/usr/share/themes
	chown -R root:root ${pkgdir}/usr/share/themes
}