wok-next view xmlstarlet/receipt @ rev 20806

I. node update: security -> https://nodejs.org/en/blog/vulnerability/june-2018-security-releases/ 9.5.0 -> 9.11.2 II. add checksum
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 13 08:26:54 2018 +0000 (2018-06-13)
parents f463de72afe3
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="xmlstarlet"
4 VERSION="1.6.1"
5 CATEGORY="development"
6 SHORT_DESC="Command Line XML Toolkit"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="http://xmlstar.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/xmlstar/$TARBALL"
14 BUILD_DEPENDS="libxslt-dev"
16 compile_rules() {
17 ./configure \
18 --with-libxml-include-prefix=/usr/include/libxml2/ \
19 $CONFIGURE_ARGS &&
20 make && make install || return 1
22 mv $install/usr/bin/xml $install/usr/bin/xmlstarlet
23 }
25 genpkg_rules() {
26 copy xmlstarlet
27 DEPENDS="libxml2 libxslt zlib"
28 }