# $Id: PKGBUILD 213091 2014-05-18 19:24:41Z andrea $ # Maintainer: Andrea Scarpino pkgname=kio pkgver=4.99.0 pkgrel=2 pkgdesc='KIO' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/frameworks/kio' license=('LGPL') depends=('solid' 'karchive' 'kjobwidgets' 'kbookmarks' 'libxslt' 'kwallet' 'desktop-file-utils') makedepends=('extra-cmake-modules' 'kdoctools') groups=('kf5') install=kio.install source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz") md5sums=('7eafc35cc0bcfb247b7871dce93c8b63') prepare() { mkdir -p build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_INSTALL_DIR=lib \ -DQT_PLUGIN_INSTALL_DIR=lib/qt/plugins \ -DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \ -DSYSCONF_INSTALL_DIR=/etc \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }