source: freewrt/package/wput/Makefile@ d1833aa

freewrt_1_0 freewrt_2_0
Last change on this file since d1833aa was 9f572e3, checked in by Dirk Nehring <dnehring@…>, 19 years ago

drop --enable-largefile from makefiles. 2GB should be enough in most cases

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@975 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.5 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:= wput
10PKG_VERSION:= 0.5
11PKG_RELEASE:= 1
12PKG_MD5SUM:= 441b2e07219f78167b29a7ac33488fff
13
14PKG_SOURCE_URL:= @SF/wput
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tgz
16
17WRKSRC= ${WRKDIR}/$(PKG_NAME)
18
19include $(TOPDIR)/mk/package.mk
20
21$(eval $(call PKG_template,WPUT,wput,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
22
23$(WRKBUILD)/.configured:
24 (cd $(WRKBUILD); rm -rf config.{cache,status} ; \
25 $(TARGET_CONFIGURE_OPTS) \
26 CFLAGS="$(TARGET_CFLAGS)" \
27 ./configure \
28 --target=$(GNU_TARGET_NAME) \
29 --host=$(GNU_TARGET_NAME) \
30 --build=$(GNU_HOST_NAME) \
31 --program-prefix="" \
32 --program-suffix="" \
33 --prefix=/usr \
34 --exec-prefix=/usr \
35 --bindir=/usr/bin \
36 --datadir=/usr/share \
37 --includedir=/usr/include \
38 --infodir=/usr/share/info \
39 --libdir=/usr/lib \
40 --libexecdir=/usr/lib \
41 --localstatedir=/var \
42 --mandir=/usr/share/man \
43 --sbindir=/usr/sbin \
44 --sysconfdir=/etc \
45 --disable-nls \
46 --enable-shared \
47 --disable-static \
48 --disable-g-switch \
49 )
50 touch $@
51
52$(WRKBUILD)/.built:
53 $(MAKE) -C $(WRKBUILD)
54 touch $@
55
56$(IPKG_WPUT):
57 install -d -m0755 $(IDIR_WPUT)/usr/bin
58 install -m0755 $(WRKBUILD)/wput $(IDIR_WPUT)/usr/bin/
59 $(RSTRIP) $(IDIR_WPUT)
60 $(IPKG_BUILD) $(IDIR_WPUT) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.