mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 04:44:38 +08:00
42 lines
821 B
Bash
42 lines
821 B
Bash
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
||
|
|
||
|
source ../frameworks.conf
|
||
|
|
||
|
pkgname=kplotting
|
||
|
pkgver=${KFVersion}
|
||
|
pkgrel=1
|
||
|
pkgdesc='Graph drawing library'
|
||
|
arch=('i686' 'x86_64')
|
||
|
url='https://projects.kde.org/projects/frameworks/kplotting'
|
||
|
license=('LGPL')
|
||
|
depends=('qt5-base')
|
||
|
makedepends=('extra-cmake-modules')
|
||
|
groups=('kf5')
|
||
|
options=("debug")
|
||
|
source=("${KFServer}/${pkgver}/${pkgname}-${pkgver}.tar.xz")
|
||
|
md5sums=('cf4adb4780958e570096fa54d44980e9')
|
||
|
|
||
|
prepare() {
|
||
|
mkdir -p build
|
||
|
}
|
||
|
|
||
|
build() {
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_BUILD_TYPE=${KFBuildType} \
|
||
|
-DCMAKE_INSTALL_PREFIX=${KFInstallPrefix} \
|
||
|
-DLIB_INSTALL_DIR=lib
|
||
|
make
|
||
|
}
|
||
|
|
||
|
check() {
|
||
|
cd build
|
||
|
msg "doesn't work currently, needs gui?"
|
||
|
make test || return 0
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd build
|
||
|
make DESTDIR="${pkgdir}" install
|
||
|
}
|