# $Id: PKGBUILD 211362 2014-04-18 18:01:44Z andrea $ # Maintainer: Andrea Scarpino pkgname=libkomparediff2 pkgver=4.13.0 pkgrel=1 pkgdesc="Library to compare files and strings" url='https://projects.kde.org/projects/kde/kdesdk/libkomparediff2' 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=('6debc3b9e8244a5ce90a2d3f3e704d10a74e84d3') 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 }