updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / plasma-commandwatch-plasmoid / PKGBUILD
blob821bd1fe2fe1e0b6dec59f5a684694f09518b940
1 # Maintainer: Bram Schoenmakers <me@bramschoenmakers.nl>
3 pkgname=plasma-commandwatch-plasmoid
4 pkgver=0.1.1
5 pkgrel=4
6 pkgdesc="Plasmoid which periodically runs a system command and displays its output"
7 arch=('i686' 'x86_64')
8 url="http://www.kde-look.org/content/show.php?content=84523"
9 license=('GPL2')
10 depends=('kdebase-workspace>=4.1.0')
11 makedepends=('gcc' 'cmake' 'automoc4')
12 install=commandwatch.install
13 source=("http://www.kde-look.org/CONTENT/content-files/84523-commandwatch-0.1.1.tar.bz2")
14 md5sums=('e9278c96870203b5fcf17a7660bb74da')
16 build() {
17   cd "$srcdir/commandwatch-$pkgver"
18   mkdir build && cd build
19   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
20   make
23 package() {
24   cd "$srcdir/commandwatch-$pkgver/build"
26   make DESTDIR="$pkgdir/" install
28 # vim:syntax=sh