desktop/yakuake/PKGBUILD
2015-03-05 04:47:12 +00:00

32 lines
753 B
Bash

# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
pkgname=yakuake
pkgver=2.9.9
pkgrel=2
pkgdesc="A KDE konsole application with the look and feel of that in the Quake engine"
arch=('x86_64')
url="http://yakuake.kde.org"
license=('GPL')
depends=('kde-baseapps-konsole')
makedepends=('cmake' 'automoc4')
categories=('system')
install="${pkgname}.install"
source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
md5sums=('ef97612710b28d62e43a58bed49cbead')
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
}