mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 01:07:15 +08:00
25 lines
653 B
Bash
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
|
|
}
|