wok view itstool/receipt @ rev 20408

dropbear/sshx: localhost may be undef
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 31 10:05:34 2018 +0200 (2018-07-31)
parents 1040bd60b471
children b130de7b7076
line source
1 # SliTaz package receipt.
3 PACKAGE="itstool"
4 VERSION="1.2.0"
5 CATEGORY="utilities"
6 SHORT_DESC="ITS-based XML translation tool"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://itstool.org/"
11 WGET_URL="http://files.itstool.org/itstool/$TARBALL"
13 DEPENDS="python libxml2-python"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/$PACKAGE $fs/usr/share
30 }