wok annotate itstool/receipt @ rev 21367

updated litmus (0.12.1 -> 0.13)
author Hans-G?nter Theisgen
date Sun Apr 21 17:10:28 2019 +0100 (2019-04-21)
parents 80c5837af140
children 472184048b8f
rev   line source
pascal@13533 1 # SliTaz package receipt.
pascal@13533 2
pascal@13533 3 PACKAGE="itstool"
Hans-G?nter@21067 4 VERSION="2.0.5"
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
pascal@16812 14 DEPENDS="python libxml2-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@21067 21 make -j 1 &&
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 }