diff options
Diffstat (limited to 'extra/qtcurve-gtk2/PKGBUILD')
-rw-r--r-- | extra/qtcurve-gtk2/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/qtcurve-gtk2/PKGBUILD b/extra/qtcurve-gtk2/PKGBUILD new file mode 100644 index 000000000..22fff627f --- /dev/null +++ b/extra/qtcurve-gtk2/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 115505 2011-03-18 09:05:13Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=qtcurve-gtk2 +pkgver=1.8.7 +pkgrel=1 +arch=('i686' 'x86_64') +groups=('qtcurve') +license=('GPL') +pkgdesc='A configurable set of widget styles for KDE and Gtk' +url='http://www.kde-look.org/content/show.php?content=40492' +depends=('gtk2') +makedepends=('pkgconfig' 'cmake') +options=('!libtool') +source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2") +md5sums=('da80db7f6a0b60e37ce14b918bc5e682') + +build() { + cd $srcdir + mkdir build + cd build + cmake ../QtCurve-Gtk2-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd $srcdir/build + make DESTDIR=$pkgdir install +} |