summaryrefslogtreecommitdiff
path: root/community/gtk-aurora-engine
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gtk-aurora-engine
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gtk-aurora-engine')
-rw-r--r--community/gtk-aurora-engine/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/gtk-aurora-engine/PKGBUILD b/community/gtk-aurora-engine/PKGBUILD
new file mode 100644
index 000000000..61f67e87b
--- /dev/null
+++ b/community/gtk-aurora-engine/PKGBUILD
@@ -0,0 +1,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')
+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
+}