summaryrefslogtreecommitdiff
path: root/community/qtcurve-gtk2
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/qtcurve-gtk2
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/qtcurve-gtk2')
-rw-r--r--community/qtcurve-gtk2/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD
new file mode 100644
index 000000000..9a53245bd
--- /dev/null
+++ b/community/qtcurve-gtk2/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 82497 2013-01-19 15:53:37Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Pierre Schmitz <pierre@archlinux.de>
+
+pkgname=qtcurve-gtk2
+pkgver=1.8.16
+pkgrel=1
+pkgdesc="A configurable set of widget styles for KDE and Gtk"
+arch=('i686' 'x86_64')
+url="http://www.kde-look.org/content/show.php?content=40492"
+license=('GPL')
+depends=('gtk2')
+makedepends=('cmake')
+groups=('qtcurve')
+options=('!libtool')
+source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2")
+md5sums=('8923caaa0704f6a30252a5eadb015d76')
+
+build() {
+ cd "${srcdir}"
+
+ mkdir -p build
+ cd build/
+ cmake ../QtCurve-Gtk2-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}