mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
30 lines
880 B
Bash
30 lines
880 B
Bash
|
# $Id: PKGBUILD 47493 2009-07-23 20:57:21Z pierre $
|
||
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||
|
# Contributor: James Rayner <iphitus@gmail.com>
|
||
|
# Contributor: leeghoofd <abcdefg@solcon.nl>
|
||
|
|
||
|
pkgname=yakuake
|
||
|
pkgver=2.9.6
|
||
|
pkgrel=2
|
||
|
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')
|
||
|
source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
|
||
|
md5sums=('d5cbb912596fd1b3a92fdb04fe46cee0')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ../${pkgname}-${pkgver} \
|
||
|
-DCMAKE_BUILD_TYPE=Release \
|
||
|
-DCMAKE_SKIP_RPATH=ON \
|
||
|
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed' \
|
||
|
-DCMAKE_INSTALL_PREFIX=/usr
|
||
|
make
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|