# $Id: PKGBUILD 217115 2014-07-18 11:30:39Z svenstaro $ # Maintainer: Andrea Scarpino pkgname=kqtquickcharts pkgver=4.13.3 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=('dc14252cdfacb187a9b9ac891b7c0158108d8fc2') 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 }