desktop/kdeplasma-applets-daisy/PKGBUILD

37 lines
1.0 KiB
Bash
Raw Normal View History

2010-06-26 07:11:58 +08:00
#
# 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
2011-01-22 19:38:31 +08:00
pkgrel=2
2010-06-26 07:11:58 +08:00
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')
2010-06-26 07:11:58 +08:00
build() {
cd $srcdir/plasma-applet-daisy-${pkgver}
# Fix compile errors, introduced with GCC 4.5
#patch -p1 < $srcdir/daisy-compile-fix.patch
2010-06-26 07:11:58 +08:00
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. || return 1
make || return 1
make DESTDIR="$pkgdir/" install || return 1
}