#Maintainer: Christopher Rey P. Baluyut pkgname=yakuake pkgver=2.9.6 pkgrel=2 zenver=64 arch=i686 source=("http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.bz2") sourcetemplate=http://zenwalk.pinguix.com/user-accounts/shingoku/kde/$pkgname/source docs=("AUTHORS" "COPYING*" "KDE4FAQ" "NEWS" "README" "TODO") url="http://yakuake.kde.org" doinst() { if [ -x usr/bin/update-desktop-database ]; then usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1 fi } slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "yakuake (Yet Another Kuake, KDE Terminal Emulator)" "Yakuake is a KDE terminal emulator. Its design was inspired from" "consoles in computer games such as Quake which slide down from the top" "of the screen when a key is pressed, and slide back up when the key is" "pressed again. Its features include:" "- Smoothly rolls down from the top of your screen" "- Tabbed interface, Skinnable" "- Configurable dimensions and animation speed" "- Sophisticated DCOP interface" ) build() { if [ -d /usr/lib/qt ]; then QTDIR=/usr/lib/qt fi cd $startdir/src/$pkgname-$pkgver mkdir -p build cd build cmake \ -DCMAKE_C_FLAGS:STRING="-O2 -march=i686 -mtune=i686" \ -DCMAKE_CXX_FLAGS:STRING="-O2 -march=i686 -mtune=i686" \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DMAN_INSTALL_DIR=/usr/man \ -DSYSCONF_INSTALL_DIR=/etc/kde \ -DLIB_SUFFIX="" \ .. make -j2 || exit 1 make install DESTDIR=$startdir/pkg || exit 1 }