gtk/oxygen-gtk3/PKGBUILD

33 lines
740 B
Bash
Raw Normal View History

2013-05-06 05:39:20 +08:00
pkgname=oxygen-gtk3
2014-10-31 22:54:13 +08:00
pkgver=1.4.1
pkgrel=1
2014-10-31 22:54:13 +08:00
pkgdesc="The Oxygen engine for GTK3, for better Qt/GTK+ integration."
2013-05-06 05:39:20 +08:00
arch=('x86_64')
url=("http://projects.kde.org/projects/playground/artwork/oxygen-gtk/")
license=('LGPL')
depends=('gtk3')
makedepends=('cmake')
2013-05-06 05:39:20 +08:00
categories=('system')
groups=('gtk-integration')
2013-09-02 05:08:42 +08:00
install=install
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
2014-10-31 22:54:13 +08:00
md5sums=('231854fbe379dd441518195c45d08201')
prepare() {
if [[ -e build ]]; then rm -rf build; fi
mkdir build
}
2013-05-06 05:39:20 +08:00
build() {
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr
make
2013-05-06 05:39:20 +08:00
}
package() {
cd build
make DESTDIR="${pkgdir}" install
2013-05-06 05:39:20 +08:00
}