# $FreeWRT$ #- # This file is part of the FreeWRT project. FreeWRT is copyrighted # material, please see the LICENCE file in the top-level directory # or at http://www.freewrt.org/licence for details. include $(TOPDIR)/rules.mk PKG_NAME:= bc PKG_VERSION:= 1.06 PKG_RELEASE:= 1 PKG_MD5SUM:= d44b5dddebd8a7a7309aea6c36fda117 PKG_SOURCE_URL:= @GNU/bc PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,BC,bc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,DC,dc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(WRKBUILD)/.configured: (cd $(WRKBUILD); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --program-prefix="" \ --program-suffix="" \ --prefix=/usr \ --exec-prefix=/usr \ --bindir=/usr/bin \ --datadir=/usr/share \ --includedir=/usr/include \ --infodir=/usr/share/info \ --libdir=/usr/lib \ --libexecdir=/usr/lib \ --localstatedir=/var \ --mandir=/usr/share/man \ --sbindir=/usr/sbin \ --sysconfdir=/etc \ --disable-nls \ ); touch $@ $(WRKBUILD)/.built: $(MAKE) -C $(WRKBUILD) \ CC=$(TARGET_CC) touch $@ $(IPKG_BC): mkdir -p $(IDIR_BC)/usr/bin install -m0755 $(WRKBUILD)/bc/bc $(IDIR_BC)/usr/bin/bc $(RSTRIP) $(IDIR_BC) $(IPKG_BUILD) $(IDIR_BC) $(PACKAGE_DIR) $(IPKG_DC): mkdir -p $(IDIR_DC)/usr/bin install -m0755 $(WRKBUILD)/dc/dc $(IDIR_DC)/usr/bin/dc $(RSTRIP) $(IDIR_DC) $(IPKG_BUILD) $(IDIR_DC) $(PACKAGE_DIR)