mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
27 lines
704 B
Bash
27 lines
704 B
Bash
# $Id: PKGBUILD,v 1.44 2008/07/14 00:57:46 Pierre Exp $
|
|
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
|
|
|
|
pkgname=qtcurve-gtk2
|
|
pkgver=0.68.1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
groups=('qtcurve')
|
|
license='GPL'
|
|
options=('!libtool')
|
|
pkgdesc='A configurable set of widget styles for KDE and Gtk'
|
|
source=("http://home.freeuk.com/cpdrummond/QtCurve-Gtk2-${pkgver}.tar.bz2")
|
|
url='http://www.kde-look.org/content/show.php?content=40492'
|
|
depends=('gtk2')
|
|
makedepends=('pkgconfig' 'cmake')
|
|
md5sums=('c7c2324e05aa09ecb26d1f9cc81a5e4a')
|
|
|
|
build() {
|
|
cd $srcdir
|
|
mkdir build
|
|
cd build
|
|
cmake ../QtCurve-Gtk2-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
make
|
|
make DESTDIR=$pkgdir install
|
|
}
|