wok view libnxml/receipt @ rev 24915

updated monitorix (3.12.0 -> 3.14.0)
author Hans-G?nter Theisgen
date Sat Apr 09 16:53:38 2022 +0100 (2022-04-09)
parents c711a8b94cb7
children e1e1678c5265
line source
1 # SliTaz package receipt.
3 PACKAGE="libnxml"
4 VERSION="0.18.3"
5 CATEGORY="libs"
6 SHORT_DESC="nXML is a C library for parsing, writing and creating XML 1.0 and 1.1 files or streams."
7 MAINTAINER="tcg.thegamer@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.autistici.org/bakunin"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="${WEB_SITE}/${PACKAGE}/${TARBALL}"
13 DEPENDS=""
14 BUILD_DEPENDS="libcurl curl-dev"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://github.com/bakulf/libnxml/tags 2>/dev/null | \
20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure $CONFIGURE_ARGS && make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*so* $fs/usr/lib
34 }