gtk/oxygen-gtk3/PKGBUILD

29 lines
721 B
Bash

pkgname=oxygen-gtk3
pkgver=1.2.0
pkgrel=2
pkgdesc="The Oxygen engine for GTK3, for better Qt/GKT+ integration."
arch=('x86_64')
url=("http://projects.kde.org/projects/playground/artwork/oxygen-gtk/")
license=('LGPL3' 'GPL')
depends=('gtk3')
makedepends=('gcc' 'cmake')
categories=('system')
groups=('gtk-integration')
install=install
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('c89352459fa41bd35e64072e6bc89593')
build() {
cd $srcdir/$pkgname-$pkgver
rm -rf build
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd $srcdir/$pkgname-$pkgver/build
make DESTDIR="${pkgdir}" install
}