mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=qtcurve
|
|
pkgver=1.8.7
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
pkgdesc='A configurable set of widget styles for KDE'
|
|
url='http://www.kde-look.org/content/show.php?content=40492'
|
|
depends=('kdebase-workspace')
|
|
makedepends=('cmake' 'automoc4')
|
|
source=("http://craigd.wikispaces.com/file/view/QtCurve-KDE4-${pkgver}.tar.bz2"
|
|
'bypass-kde-config.patch')
|
|
md5sums=('a874fade6bf67ee052dc656dd76ffe37'
|
|
'3f6681147cc361bd2bfd4d7477f2a8d0')
|
|
|
|
build() {
|
|
cd ${srcdir}/QtCurve-KDE4-${pkgver}
|
|
# Bypass KDE prefix detection by kde4-config, see:
|
|
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=541667
|
|
patch -Np1 -i ${srcdir}/bypass-kde-config.patch
|
|
|
|
cd ${srcdir}
|
|
mkdir build
|
|
cd build
|
|
cmake ../QtCurve-KDE4-${pkgver} \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DQTC_STYLE_SUPPORT=true
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|