wok annotate units/receipt @ rev 13847

frogatto: try to fix build (Boost 1.47 removed a deprecated function...) btw, we use boost 1.50
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Jan 09 01:13:47 2013 +0000 (2013-01-09)
parents a1076cb2b336
children 2b9f96603415
rev   line source
paul@4538 1 # SliTaz package receipt.
paul@4538 2
paul@4538 3 PACKAGE="units"
paul@13674 4 VERSION="2.01"
paul@4538 5 CATEGORY="utilities"
paul@4538 6 SHORT_DESC="Units converter."
paul@4538 7 MAINTAINER="paul@slitaz.org"
pascal@5007 8 DEPENDS="readline ncurses"
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@13674 12 SUGGESTED="python" # to run units_cur
paul@4538 13
slaxemulator@10308 14 DEPENDS="readline ncurses"
slaxemulator@10308 15 BUILD_DEPENDS="readline-dev ncurses-dev"
slaxemulator@10308 16
paul@4538 17 # Rules to configure and make the package.
paul@4538 18 compile_rules()
paul@4538 19 {
paul@4538 20 cd $src
slaxemulator@10308 21 ./configure $CONFIGURE_ARGS &&
slaxemulator@8368 22 make && make -j1 DESTDIR=$DESTDIR 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@13674 29 cp -a $install/usr/bin $fs/usr
paul@13674 30 cp -a $install/usr/share/units $fs/usr/share
paul@4538 31 }
paul@4538 32