gtk/oxygen-gtk3/PKGBUILD
2014-08-12 22:23:12 +02:00

33 lines
740 B
Bash

pkgname=oxygen-gtk3
pkgver=1.4.0
pkgrel=1
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=('LGPL')
depends=('gtk3')
makedepends=('cmake')
categories=('system')
groups=('gtk-integration')
install=install
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
md5sums=('68f0e7af7bd9f618abf3c0444a0f2868')
prepare() {
if [[ -e build ]]; then rm -rf build; fi
mkdir build
}
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}