From 53860da0df531e9f3c105f1c00a6134b88932cb3 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 7 Jan 2014 16:39:04 +0100 Subject: add gnu bc, for bsd buildsystems --- tools/Makefile | 2 +- tools/bc/Makefile | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 tools/bc/Makefile (limited to 'tools') diff --git a/tools/Makefile b/tools/Makefile index e644efbb1..4326dd4ab 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk -TARGETS:=adk mkcrypt cpio mkimage genext2fs +TARGETS:=adk mkcrypt cpio mkimage genext2fs bc ifeq ($(ADK_TARGET_ROOTFS_ISO),y) TARGETS+=cdrtools syslinux endif diff --git a/tools/bc/Makefile b/tools/bc/Makefile new file mode 100644 index 000000000..4f48f9fa9 --- /dev/null +++ b/tools/bc/Makefile @@ -0,0 +1,25 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= bc +PKG_VERSION:= 1.06 +PKG_RELEASE:= 1 +PKG_MD5SUM:= d44b5dddebd8a7a7309aea6c36fda117 +PKG_SITES:= http://ftp.gnu.org/pub/gnu/bc/ + +include ../rules.mk + +install: ${TOOLS_DIR}/bc + +$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared + (cd ${WRKBUILD}; ./configure) + ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' + touch $@ + +${TOOLS_DIR}/bc: $(WRKBUILD)/.compiled + $(INSTALL_BIN) $(WRKBUILD)/bc/bc \ + ${TOOLS_DIR} + +include $(TOPDIR)/mk/tools.mk -- cgit v1.2.3