desktop/shared-desktop-ontologies/PKGBUILD
AlmAck 0af05b343a kde applications 16.12.0
renamed checksums to kdeapps.sums
added for all packages the pgp signature
for new/removed packages check: https://community.kde.org/Applications/16.12_Release_Notes#Tarballs_that_we_have_split
2016-12-20 21:48:24 +00:00

26 lines
548 B
Bash

pkgname=shared-desktop-ontologies
pkgver=0.11.0
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=('db75d155ac9b60e3d187e23544744acc')
build() {
cd "${srcdir}"
mkdir build
cd build
cmake "../${pkgname}-${pkgver}" \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
}