core/shared-desktop-ontologies/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

25 lines
653 B
Bash

# $Id: $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
pkgname=shared-desktop-ontologies
pkgver=0.2
pkgrel=1
pkgdesc="Ontologies necessary for the Nepomuk semantic desktop."
arch=('any')
url="http://sourceforge.net/apps/trac/oscaf/"
license=('GPL')
makedepends=("cmake")
source=("http://downloads.sourceforge.net/oscaf/$pkgname-$pkgver.tar.bz2")
md5sums=('6c004e1c377f768cae5b321bc111876b')
build() {
cd ${srcdir}
mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_INSTALL_PREFIX=/usr || return 1
make || return 1
make DESTDIR=${pkgdir} install
}