updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / sembrowser / PKGBUILD
blobd91d2531b73bf50a32984d951ee2f5673bf6034a
1 #Contributor: Flamelab <panosfilip@gmail.com>
3 pkgname=sembrowser
4 pkgver=0.3
5 pkgrel=1
6 pkgdesc="A prototype of a semantic faceted file manager for KDE 4"
7 arch=('i686' 'x86_64')
8 url='http://kde-apps.org/content/show.php/Sembrowser?content=117692&PHPSESSID=926bb074f744440ea6e3c28bdf219063'
9 license=('GPL' 'LGPL' 'FDL')
10 depends=('kdebase-workspace')
11 makedepends=('cmake' 'automoc4')
12 install='sembrowser.install'
13 source=("http://kde-apps.org/CONTENT/content-files/117692-${pkgname}-${pkgver}.tar.gz")
15 build() {
16         cd $srcdir/${pkgname}
18         if [ -d build ];then 
19             rm -r build;
20         fi
21         mkdir build
22         cd build
23         cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` -DCMAKE_BUILD_TYPE=Release ..
24         make || return 1
27 package() {
28         cd $srcdir/${pkgname}/build
29         make DESTDIR=$pkgdir install || return 1
32 md5sums=('cd0c67cec2c9b31810e58b336a54419b')