kross: initial import

This commit is contained in:
Fabian 2014-01-18 20:02:50 +00:00
parent 50b5f91422
commit 16ecb3e8fe

42
kross/PKGBUILD Normal file
View File

@ -0,0 +1,42 @@
# Contributor: Andrea Scarpino <andrea@archlinux.org>
source ../frameworks.conf
pkgname=kross
pkgver=${KFVersion}
pkgrel=1
pkgdesc='Kross'
arch=('i686' 'x86_64')
url='https://projects.kde.org/projects/frameworks/kross'
license=('LGPL')
depends=('kparts')
makedepends=('extra-cmake-modules' 'kdoctools' 'qt5-tools')
groups=('kf5')
options=("debug")
source=("${KFServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
md5sums=('1302a716dc7caecd87073519612fb195')
prepare() {
mkdir -p build
}
build() {
# export XDG_DATA_DIRS="/opt/kf5/share:$XDG_DATA_DIRS"
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=${KFBuildType} \
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
-DLIB_INSTALL_DIR=lib
make
}
check() {
cd build
msg "fails currently, needs GUI?"
make test || return 0
}
package() {
cd build
make DESTDIR="${pkgdir}" install
}