desktop/kqtquickcharts/PKGBUILD

34 lines
720 B
Bash
Raw Normal View History

2014-03-26 05:23:01 +08:00
# Include global configuration
2015-04-07 02:28:28 +08:00
source ../kdeapps.conf
2014-03-26 05:23:01 +08:00
pkgname=kqtquickcharts
2014-03-26 05:23:01 +08:00
pkgver=${_kdever}
pkgrel=1
pkgdesc="A QtQuick plugin to render beautiful and interactive charts"
url="https://edu.kde.org/"
arch=(x86_64)
license=(GPL LGPL FDL)
depends=(qt5-declarative)
makedepends=(extra-cmake-modules)
options=(docs debug)
groups=(kde kde-uninstall kde-applications)
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
validpgpkeys=(${Avalidpgpkeys})
prepare() {
mkdir -p build
}
2014-03-26 05:23:01 +08:00
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
2014-03-26 05:23:01 +08:00
}
package() {
cd build
make DESTDIR=${pkgdir} install
2014-03-26 05:23:01 +08:00
}