wok view itstool/receipt @ rev 20917

updated fdupes (1.40 -> 1.6.1)
author Hans-G?nter Theisgen
date Thu Feb 28 17:10:02 2019 +0100 (2019-02-28)
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 }