desktop/yakuake/PKGBUILD

32 lines
753 B
Bash
Raw Normal View History

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