wok view units/receipt @ rev 13717

gmp: enable C++ support (provide libgmpxx)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Dec 20 16:06:17 2012 +0000 (2012-12-20)
parents a1076cb2b336
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="units"
4 VERSION="2.01"
5 CATEGORY="utilities"
6 SHORT_DESC="Units converter."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="readline ncurses"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org"
11 WGET_URL="http://ftp.gnu.org/gnu/units/$TARBALL"
12 SUGGESTED="python" # to run units_cur
14 DEPENDS="readline ncurses"
15 BUILD_DEPENDS="readline-dev ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make -j1 DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/units $fs/usr/share
31 }