desktop/kdeplasma-applets-daisy/PKGBUILD
2011-01-22 11:38:31 +00:00

37 lines
1.0 KiB
Bash

#
# KDEPlasma 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=kdeplasma-applets-daisy
pkgver=0.0.4.25
pkgrel=2
pkgdesc="A simple application launcher for Plasma."
arch=('i686' 'x86_64')
url="http://lechio.freehostia.com/daisy.html"
license=('GPL')
depends=('kdebase-workspace')
makedepends=('gcc' 'cmake' 'automoc4')
conflicts=('kde-extragear-plasmoids')
replaces=('plasma-daisy-plasmoid')
install=daisy.install
source=(""http://cdlszm.org/downloads/plasma-applet-daisy-$pkgver.tar.gz"")
md5sums=('269fd526453a16066cb704352505f7e9')
build() {
cd $srcdir/plasma-applet-daisy-${pkgver}
# Fix compile errors, introduced with GCC 4.5
#patch -p1 < $srcdir/daisy-compile-fix.patch
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. || return 1
make || return 1
make DESTDIR="$pkgdir/" install || return 1
}