# $Id: PKGBUILD 153206 2012-03-12 09:41:09Z andrea $ # Maintainer: Andrea Scarpino pkgname=kdeutils-filelight pkgver=4.8.1 pkgrel=1 pkgdesc='View disk usage information' url='http://kde.org/applications/utilities/filelight' arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=('kdebase-runtime') makedepends=('cmake' 'automoc4') groups=('kde' 'kdeutils') replaces=('filelight') conflicts=('filelight') install=${pkgname}.install source=("http://download.kde.org/stable/${pkgver}/src/filelight-${pkgver}.tar.xz") sha1sums=('24cd19b927221de2dafd2a1c3d5e8a72a41ec4b5') build() { cd "${srcdir}" mkdir build cd build cmake ../filelight-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd $srcdir/build make DESTDIR=$pkgdir install cd $srcdir/build/doc make DESTDIR=$pkgdir install }