mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
0af05b343a
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
26 lines
548 B
Bash
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
|
|
}
|