desktop/kdeplasma-applets-daisy/PKGBUILD

43 lines
1.1 KiB
Bash
Raw Normal View History

2010-06-26 07:11:58 +08:00
#
# Apps Packages for Chakra, part of chakra-project.org
2010-06-26 07:11:58 +08:00
#
# 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=4
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=('kde-workspace')
2010-06-26 07:11:58 +08:00
makedepends=('gcc' 'cmake' 'automoc4')
conflicts=('kde-extragear-plasmoids')
replaces=('plasma-daisy-plasmoid')
categories=('accessories')
2010-06-26 07:11:58 +08:00
install=daisy.install
source=("http://cdlszm.org/downloads/plasma-applet-daisy-$pkgver.tar.gz"
'patch.diff')
md5sums=('269fd526453a16066cb704352505f7e9'
'0a36cfe275cb2c981c26e8e467d0fd57')
2010-06-26 07:11:58 +08:00
build() {
cd $srcdir/plasma-applet-daisy-${pkgver}
#Patch to make daisy work with KDE>=4.8
patch -Np1 -i "${srcdir}/patch.diff"
2010-06-26 07:11:58 +08:00
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr ..
make
}
package() {
cd $srcdir/plasma-applet-daisy-${pkgver}/build
make DESTDIR="$pkgdir/" install
2010-06-26 07:11:58 +08:00
}