desktop/kqtquickcharts/PKGBUILD

31 lines
784 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"
arch=('x86_64')
pkgver=${_kdever}
pkgrel=1
pkgdesc="The core Nepomuk system"
2015-04-07 02:28:28 +08:00
url="https://projects.kde.org/projects/kde/kdeedu/kqtquickcharts"
license=('GPL' 'LGPL' 'FDL')
options=('docs' 'debug')
2015-02-20 06:29:49 +08:00
depends=("kdelibs>=${_libsver}")
2015-04-07 02:28:28 +08:00
makedepends=('cmake' 'automoc4' 'doxygen')
2014-03-26 05:23:01 +08:00
source=($_mirror/${pkgname}-$_kdever.tar.xz)
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d" " -f1`)
build() {
cd ${pkgname}-${pkgver}
rm -rf build
mkdir -p build && cd build
cmake .. \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix}
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}/build
make DESTDIR=${pkgdir} install
}