mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-25 02:22:13 +08:00
33 lines
740 B
Bash
33 lines
740 B
Bash
pkgname=oxygen-gtk3
|
|
pkgver=1.4.1
|
|
pkgrel=1
|
|
pkgdesc="The Oxygen engine for GTK3, for better Qt/GTK+ 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=('231854fbe379dd441518195c45d08201')
|
|
|
|
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
|
|
}
|