# $Id: PKGBUILD 211363 2014-04-18 18:01:45Z andrea $ # Maintainer: Andrea Scarpino pkgname=kqtquickcharts pkgver=4.13.0 pkgrel=1 pkgdesc="A QtQuick plugin to render beautiful and interactive charts" url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdelibs') makedepends=('cmake' 'automoc4') source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz") sha1sums=('a58359112047c63ce12e4b509c691ab560c5d255') prepare() { mkdir build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DKDE4_BUILD_TESTS=OFF \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd build make DESTDIR="${pkgdir}" install }