desktop/gtk-integration-engine-qtcurve/PKGBUILD

36 lines
916 B
Bash

#
# Packages for Chakra, part of chakra-project.org
#
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=gtk-integration-engine-qtcurve
pkgver=1.8.12
pkgrel=2
arch=('i686' 'x86_64')
license=('GPL')
pkgdesc='QtCurve-Gtk2 Add-on for Gtk-integration'
url='http://www.kde-look.org/content/show.php?content=40492'
provides=('qtcurve-gtk2')
conflicts=('qtcurve-gtk2')
makedepends=('pkgconfig' 'cmake' 'gtk2')
groups=('gtk-integration')
options=('!libtool')
categories=('system')
source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2")
md5sums=('e1b8b4a8444c0afe8ba291f623c6b713')
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
}