updated on Sat Jan 14 12:12:45 UTC 2012
[aur-mirror.git] / kor / PKGBUILD
blobfda54dda4e851d3fd9706b472f43d64b526ba7ce
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
7 pkgname=kor
8 pkgver=0.3.2
9 pkgrel=1
10 pkgdesc="Kor is an implementation of a desktop workspace"
11 arch=('x86_64' 'i686')
12 url="http://kde-apps.org/content/show.php?content=126302"
13 license=('GPL')
14 depends=('kdelibs')
15 makedepends=('cmake' 'automoc4' 'gcc')
16 source=("http://kde-apps.org/CONTENT/content-files/126302-$pkgname-$pkgver.tar.gz")
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
20   export CXXFLAGS="-w"
21   cmake . -DCMAKE_INSTALL_PREFIX=/usr
22   make 
25 package() {
26   cd "$srcdir/$pkgname-$pkgver"
27   make DESTDIR="$pkgdir/" install
30 # vim:set ts=2 sw=2 et:
31 md5sums=('32b08e716403e94837a03103b2076afb')