# $Id: PKGBUILD 107962 2011-01-28 08:00:39Z andrea $ # Maintainer: Andrea Scarpino # Contributor: James Rayner # Contributor: leeghoofd pkgname=yakuake pkgver=2.9.8 pkgrel=1 pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine" arch=('i686' 'x86_64') url="http://yakuake.kde.org" license=('GPL') depends=('kdebase-konsole') makedepends=('cmake' 'automoc4') install="${pkgname}.install" source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") md5sums=('a53ae52fc530912b74155a586d92a1fe') build() { cd ${srcdir} mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_SKIP_RPATH=ON \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd ${srcdir}/build make DESTDIR=${pkgdir} install }