wok-next view shared-desktop-ontologies/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents b2292a5ea5ed
children
line source
1 # SliTaz package receipt.
3 PACKAGE="shared-desktop-ontologies"
4 VERSION="0.11.0"
5 CATEGORY="development"
6 SHORT_DESC="Provide RDF vocabularies for the Semantic Desktop"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://oscaf.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/oscaf/$TARBALL"
13 BUILD_DEPENDS="cmake"
15 compile_rules() {
16 mkdir build
17 cd build
18 cmake \
19 -DCMAKE_INSTALL_PREFIX=/usr \
20 .. &&
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr
27 cp -a $install/usr/* $fs/usr
28 }