mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-25 02:22:13 +08:00
29 lines
746 B
Bash
29 lines
746 B
Bash
pkgname=oxygen-gtk3
|
|
pkgver=1.2.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=('LGPL3' 'GPL')
|
|
depends=('gtk3' 'filesystem-extra')
|
|
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=/extra/usr ..
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver/build
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|