wok view shared-desktop-ontologies/receipt @ rev 25460

Update sourceforge.net web_sites with https://
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Sep 28 08:10:35 2022 +0000 (19 months ago)
parents e919c5a2742d
children 29df00e1e19d
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="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://oscaf.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/oscaf/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="cmake"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://sourceforge.net/projects/oscaf/files/shared-desktop-ontologies/ 2>/dev/null | \
20 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
21 sed '/scope="row/!d;s|.*/shared-desktop-ontologies/||;s|/.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 mkdir -p build && cd build
28 cmake \
29 -DCMAKE_INSTALL_PREFIX=/usr \
30 .. &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr
39 cp -a $install/usr/* $fs/usr
40 }