diff --git a/packages/tools/bc/build b/packages/tools/bc/build new file mode 100755 index 0000000000..f076a13a1a --- /dev/null +++ b/packages/tools/bc/build @@ -0,0 +1,14 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/build toolchain + +cd $PKG_BUILD + +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --disable-nls \ + +make diff --git a/packages/tools/bc/install b/packages/tools/bc/install new file mode 100755 index 0000000000..f4987d714e --- /dev/null +++ b/packages/tools/bc/install @@ -0,0 +1,6 @@ +#!/bin/sh + +. config/options + +mkdir -p $INSTALL/usr/bin + cp $PKG_BUILD/bc/bc $INSTALL/usr/bin diff --git a/packages/tools/bc/url b/packages/tools/bc/url new file mode 100644 index 0000000000..ff437a421a --- /dev/null +++ b/packages/tools/bc/url @@ -0,0 +1 @@ +ftp://ftp.gnu.org/gnu/bc/bc-1.06.tar.gz \ No newline at end of file