updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / quotesee-plasmoid / PKGBUILD
blob9b130b4fc35f939e5e57bd7891dcc7e45aa5f1be
1 # Arch package for the quotesee plasmoid
2 # Homepage: 
3 # Developer: Josh Zegan http://kde-look.org/usermanager/search.php?username=jzegan
4 # Contributor's note: This is my first attempt at an Arch package. I'm mostly doing this for
5 # the learning experience. Please contact me if I fucked anything up or you have any problems,
6 # suggestions, comments, or flames. Thx - p.daniels
7 # Maintainer: Pete Daniels <teeahr1 AT gee-mail DOT communism> (You can figure it out, right?)
9 pkgname=quotesee-plasmoid
10 pkgver=0.2.2
11 pkgrel=1
12 pkgdesc="Stock and currency quote plasmoid for KDE4."
13 arch=('i686' 'x86_64')
14 url="http://kde-look.org/content/show.php/QuoteSee+Stock%2BCurrency+plasmoid?content=101760"
15 license=('GPL')
16 depends=('qt>=4.5' 'kdebase-workspace')
17 makedepends=('cmake' 'make' 'automoc4')
18 install=$pkgname.install
19 source=(http://kde-look.org/CONTENT/content-files/101760-plasma_quotesee-$pkgver.tar.gz)
20 md5sums=('d3b5c3d3026bc6c6159399c87cd0ddeb')
21 build() {
22     cd $srcdir/plasma_quotesee-$pkgver
23     mkdir build
24     cd build
25     cmake ../ -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` || return 1
26     make || return 1
27     make DESTDIR=$pkgdir install || return 1