bc: added package.

This commit is contained in:
Ricardo Martins 2014-06-11 19:33:08 +01:00
parent 5ce97d6921
commit 9898f97491

37
rules/bc/host.bash Normal file
View File

@ -0,0 +1,37 @@
version=\
(
'1.06'
)
url=\
(
"http://ftp.gnu.org/gnu/bc/bc-$version.tar.gz"
)
md5=\
(
'd44b5dddebd8a7a7309aea6c36fda117'
)
maintainer=\
(
'Ricardo Martins <rasm@fe.up.pt>'
)
configure()
{
./configure \
--prefix="$cfg_dir_toolchain" \
--disable-shared \
--enable-static
}
build()
{
$cmd_make
}
host_install()
{
$cmd_make install
}