wok-next view xmlstarlet/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
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 }