wok view lilv/receipt @ rev 24621

updated graphicsmagick (1.3.34 -> 1.3.37)
author Hans-G?nter Theisgen
date Mon Mar 07 11:14:15 2022 +0100 (2022-03-07)
parents b9b707621001
children 870e1ce31226
line source
1 # SliTaz package receipt.
3 PACKAGE="lilv"
4 VERSION="0.24.6"
5 CATEGORY="development"
6 SHORT_DESC="Make the use of LV2 plugins as simple as possible for applications."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://drobilla.net/software/lilv/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://download.drobilla.net/$TARBALL"
14 DEPENDS="serd sord sratom"
15 BUILD_DEPENDS="lv2 pkg-config serd-dev sord-dev sratom"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - ${WGET_URL%/*} 2>/dev/null | \
21 sed "/latest/d;/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*|\\1|" | sort -Vr | sed q
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./waf configure --prefix=/usr &&
28 ./waf build &&
29 ./waf install --destdir=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/* $fs
36 }