desktop/yakuake/PKGBUILD

34 lines
971 B
Bash
Raw Normal View History

2010-05-31 00:30:09 +08:00
#
# KDE SC Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=yakuake
2010-07-19 19:02:16 +08:00
pkgver=2.9.7
2010-05-31 00:30:09 +08:00
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')
source=("http://download.berlios.de/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
2010-07-19 19:02:16 +08:00
md5sums=('c5a6d1f50ab9464d62563cdb18d6afb7')
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_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed' \
-DCMAKE_INSTALL_PREFIX=/usr
make
make DESTDIR=${pkgdir} install
}