2014-11-15 06:35:29 +08:00
|
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
|
|
|
|
source ../frameworks.conf
|
|
|
|
|
|
|
|
pkgname=frameworkintegration
|
|
|
|
pkgver=${KFVersion}
|
2016-02-07 23:56:14 +08:00
|
|
|
pkgrel=1
|
2014-11-15 06:35:29 +08:00
|
|
|
pkgdesc='Framework providing components to allow applications to integrate with a KDE Workspace'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://projects.kde.org/projects/frameworks/frameworkintegration'
|
|
|
|
license=('LGPL')
|
2016-03-23 03:33:55 +08:00
|
|
|
depends=('kio' 'ttf-noto') #should replace this with oxygen-fonts once plasma5 hits stable
|
2014-11-15 06:49:31 +08:00
|
|
|
makedepends=("extra-cmake-modules>=${KFECMVersion}")
|
2014-11-15 06:35:29 +08:00
|
|
|
options=("debug")
|
|
|
|
groups=('kf5')
|
|
|
|
source=("${KFServer}/${pkgname}-${pkgver}.tar.xz")
|
|
|
|
sha256sums=( $(getSum ${pkgname}) )
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
2015-02-24 06:26:16 +08:00
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
2014-11-15 06:35:29 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|