source: freewrt/package/bc/Makefile

freewrt_2_0
Last change on this file was 4ed29b3, checked in by Waldemar Brodkorb <wbx@…>, 4 months ago

add GNU mirror support

  • Property mode set to 100644
File size: 1.6 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= bc
10PKG_VERSION:= 1.06
11PKG_RELEASE:= 1
12PKG_MD5SUM:= d44b5dddebd8a7a7309aea6c36fda117
13
14PKG_SOURCE_URL:= @GNU/bc
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,BC,bc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
21$(eval $(call PKG_template,DC,dc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
22
23$(WRKBUILD)/.configured:
24 (cd $(WRKBUILD); rm -rf config.cache; \
25 $(TARGET_CONFIGURE_OPTS) \
26 CFLAGS="$(TARGET_CFLAGS)" \
27 CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
28 LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
29 ./configure \
30 --target=$(GNU_TARGET_NAME) \
31 --host=$(GNU_TARGET_NAME) \
32 --build=$(GNU_HOST_NAME) \
33 --program-prefix="" \
34 --program-suffix="" \
35 --prefix=/usr \
36 --exec-prefix=/usr \
37 --bindir=/usr/bin \
38 --datadir=/usr/share \
39 --includedir=/usr/include \
40 --infodir=/usr/share/info \
41 --libdir=/usr/lib \
42 --libexecdir=/usr/lib \
43 --localstatedir=/var \
44 --mandir=/usr/share/man \
45 --sbindir=/usr/sbin \
46 --sysconfdir=/etc \
47 --disable-nls \
48 );
49 touch $@
50
51$(WRKBUILD)/.built:
52 $(MAKE) -C $(WRKBUILD) \
53 CC=$(TARGET_CC)
54 touch $@
55
56$(IPKG_BC):
57 mkdir -p $(IDIR_BC)/usr/bin
58 install -m0755 $(WRKBUILD)/bc/bc $(IDIR_BC)/usr/bin/bc
59 $(RSTRIP) $(IDIR_BC)
60 $(IPKG_BUILD) $(IDIR_BC) $(PACKAGE_DIR)
61
62$(IPKG_DC):
63 mkdir -p $(IDIR_DC)/usr/bin
64 install -m0755 $(WRKBUILD)/dc/dc $(IDIR_DC)/usr/bin/dc
65 $(RSTRIP) $(IDIR_DC)
66 $(IPKG_BUILD) $(IDIR_DC) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.