mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
828 B
Bash
35 lines
828 B
Bash
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=gtk-integration-engine-qtcurve
|
|
pkgver=1.8.16
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
pkgdesc='QtCurve-Gtk2 Add-on for Gtk-integration.'
|
|
url='http://www.kde-look.org/content/show.php?content=40492'
|
|
depends=('kde-gtk-config' 'gtk2')
|
|
provides=('qtcurve-gtk2')
|
|
conflicts=('qtcurve-gtk2')
|
|
makedepends=('pkgconfig' 'cmake')
|
|
categories=('system')
|
|
options=('!libtool')
|
|
source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2")
|
|
md5sums=('8923caaa0704f6a30252a5eadb015d76')
|
|
|
|
build() {
|
|
cd "${srcdir}"
|
|
|
|
mkdir -p build && cd build
|
|
|
|
cmake "${srcdir}/QtCurve-Gtk2-${pkgver}" \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|