wok view itstool/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents feeef374a05a
children 80c5837af140
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"
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 }