# $Id: PKGBUILD 212939 2014-05-16 22:31:37Z andrea $ # Maintainer: Andrea Scarpino pkgname=kiconthemes pkgver=4.99.0 pkgrel=1 pkgdesc='KIconThemes' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/frameworks/kiconthemes' license=('LGPL') depends=('qt5-svg' 'kconfigwidgets' 'kitemviews') makedepends=('extra-cmake-modules') groups=('kf5') source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz") md5sums=('fe792bfca8700f0eb51ef622fe92e242') prepare() { mkdir -p build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_INSTALL_DIR=lib \ -DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }