updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / plasma-klicker-plasmoid / PKGBUILD
blob5c638bb55e4a16271b86f333f9f509d5e0ff8029
1 # Maintainer: Bram Schoenmakers <me@bramschoenmakers.nl>
3 pkgname=plasma-klicker-plasmoid
4 pkgver=0.1.1
5 pkgrel=4
6 pkgdesc="An icon application launcher with zooming."
7 arch=('i686' 'x86_64')
8 url="http://www.kde-look.org/content/show.php?content=99554"
9 license=('GPL')
10 depends=('kdebase-workspace')
11 makedepends=('gcc' 'cmake' 'automoc4')
12 install=klicker.install
13 source=("http://www.kde-look.org/CONTENT/content-files/99554-klicker$pkgver.tar.gz")
14 md5sums=('dc85a5d583c3576dfac57825d7cee567')
16 build() {
17   cd "$srcdir"
18   mkdir build && cd build
19   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
20   make
23 package() {
24   cd "$srcdir/build"
26   make DESTDIR="$pkgdir/" install
28 # vim:syntax=sh