wok annotate units/receipt @ rev 4815

Up: gtkhtml_viewer(0.26)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jan 19 01:08:25 2010 +0100 (2010-01-19)
parents 69f6139a17d9
children 4897058add72
rev   line source
paul@4538 1 # SliTaz package receipt.
paul@4538 2
paul@4538 3 PACKAGE="units"
paul@4538 4 VERSION="1.87"
paul@4538 5 CATEGORY="utilities"
paul@4538 6 SHORT_DESC="Units converter."
paul@4538 7 MAINTAINER="paul@slitaz.org"
paul@4565 8 DEPENDS="readline"
paul@4538 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@4538 10 WEB_SITE="http://www.gnu.org"
paul@4538 11 WGET_URL="http://ftp.gnu.org/gnu/units/$TARBALL"
paul@4538 12
paul@4538 13 # Rules to configure and make the package.
paul@4538 14 compile_rules()
paul@4538 15 {
paul@4538 16 cd $src
paul@4538 17 ./configure \
paul@4538 18 --prefix=/usr \
paul@4538 19 --infodir=/usr/share/info \
paul@4538 20 --mandir=/usr/share/man \
paul@4538 21 $CONFIGURE_ARGS &&
paul@4538 22 make && make DESTDIR=$PWD/_pkg install
paul@4538 23 }
paul@4538 24
paul@4538 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4538 26 genpkg_rules()
paul@4538 27 {
paul@4538 28 mkdir -p $fs/usr/share
paul@4538 29 cp -a $_pkg/usr/bin $fs/usr
paul@4538 30 cp $_pkg/usr/share/units.dat $fs/usr/share
paul@4538 31 }
paul@4538 32