updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / plasma-stockquote-plasmoid / PKGBUILD
blob4a4351ca7639c791c8da75db5b61591482602a25
1 # Maintainer: Bram Schoenmakers <me@bramschoenmakers.nl>
3 pkgname=plasma-stockquote-plasmoid
4 pkgver=2.1
5 pkgrel=3
6 pkgdesc="Displays stock quotes on the desktop pulled from the Yahoo servers."
7 arch=('i686' 'x86_64')
8 url="http://www.kde-look.org/content/show.php?content=90695"
9 license=('GPL')
10 depends=('kdebase-workspace')
11 makedepends=('gcc' 'cmake' 'automoc4')
12 install=stockquote.install
13 source=("http://www.kde-look.org/CONTENT/content-files/90695-plasma_stock_quote-$pkgver.tar.bz2")
14 md5sums=('ec2099065da1b61bcc8d6c435b87ca79')
16 build() {
17   cd "$srcdir/plasma_stock_quote-$pkgver"
18   mkdir build && cd build
19   cmake -DCMAKE_INSTALL_PREFIX=/usr ..
20   make
23 package() {
24   cd "$srcdir/plasma_stock_quote-$pkgver/build"
26   make DESTDIR="$pkgdir/" install
28 # vim:syntax=sh