wok annotate itstool/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents b130de7b7076
children af8d823a3077
rev   line source
pascal@13533 1 # SliTaz package receipt.
pascal@13533 2
pascal@13533 3 PACKAGE="itstool"
Hans-G?nter@22964 4 VERSION="2.0.6"
pascal@13533 5 CATEGORY="utilities"
Hans-G?nter@21067 6 SHORT_DESC="ITS-based XML translation tool."
pascal@13533 7 MAINTAINER="al.bobylev@gmail.com"
pascal@15023 8 LICENSE="GPL3"
Hans-G?nter@21067 9 WEB_SITE="http://itstool.org/"
Hans-G?nter@21067 10
pascal@13533 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
Hans-G?nter@21067 12 WGET_URL="http://files.itstool.org/$PACKAGE/$TARBALL"
pascal@13533 13
Hans-G?nter@22964 14 DEPENDS="libxml2-python python"
Hans-G?nter@21067 15 BUILD_DEPENDS="libxml2-python"
pascal@15023 16
pascal@13533 17 # Rules to configure and make the package.
pascal@13533 18 compile_rules()
pascal@13533 19 {
pascal@13533 20 ./configure $CONFIGURE_ARGS &&
Hans-G?nter@22964 21 make &&
Hans-G?nter@21067 22 make install
pascal@13533 23 }
pascal@13533 24
pascal@13533 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13533 26 genpkg_rules()
pascal@13533 27 {
pascal@13533 28 mkdir -p $fs/usr/share
Hans-G?nter@21067 29
Hans-G?nter@21067 30 cp -a $install/usr/bin $fs/usr
Hans-G?nter@21067 31 cp -a $install/usr/share/$PACKAGE $fs/usr/share
pascal@13533 32 }