mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
688 B
Bash
22 lines
688 B
Bash
# $Id: PKGBUILD 12835 2008-09-21 14:30:41Z giovanni $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Jake VanderKolk <jakevanderkolk@gmail.com>
|
|
|
|
pkgname=gtk-qt-engine
|
|
pkgver=1.1
|
|
pkgrel=1
|
|
pkgdesc="A GTK engine which makes your GTK2 Apps match your QT theme"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://gtk-qt.ecs.soton.ac.uk"
|
|
depends=('libbonoboui' 'kdelibs')
|
|
makedepends=('cmake>=2.4.7' 'automoc4' 'pkgconfig')
|
|
source=("http://gtk-qt.ecs.soton.ac.uk/files/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('de8048baef7dfe6c97cd97c463d66152')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname"
|
|
cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|