source: freewrt/package/socat/Makefile@ d419478

freewrt_1_0 freewrt_2_0
Last change on this file since d419478 was d419478, checked in by Thorsten Glaser <tg@…>, 19 years ago
  • whitespace cleanup, while here
  • move WRKDIR and DISTFILES definition into PKG_template
  • define WRKDIR via parent BUILD_DIR instead of going up from WRKSRC
  • use a sub-directory as WRKDIR, like BSD
  • rename PKG_BUILD_DIR into WRKBUILD
  • define WRKBUILD relative via WRKDIR
  • rename PKG_INSTALL_DIR into WRKINST
  • fix a few dependencies
  • make use of common cases in the definition of WRKBUILD and WRKINST, removing many redundant lines
  • use WRKDIR instead of BUILD_DIR in places where the latter was used previously
  • while here, remove PKG_CAT stuff

this only affects packages, for now

git-svn-id: svn://www.freewrt.org/trunk/freewrt@303 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.6 KB
Line 
1# $Id: Makefile 3112 2006-02-01 23:53:19Z mbm $
2
3include $(TOPDIR)/rules.mk
4
5PKG_NAME:=socat
6PKG_VERSION:=1.4.3.1
7PKG_RELEASE:=1
8PKG_MD5SUM:=a80022054be327a461afae8e306cae6f
9
10PKG_SOURCE_URL:=http://www.dest-unreach.org/socat/download/
11PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
12
13WRKBUILD:=${WRKDIR}/$(PKG_NAME)-1.4
14
15include $(TOPDIR)/package/rules.mk
16
17$(eval $(call PKG_template,SOCAT,socat,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
18
19$(WRKBUILD)/.configured:
20 (cd $(WRKBUILD); rm -rf config.{cache,status}; \
21 $(TARGET_CONFIGURE_OPTS) \
22 CFLAGS="$(TARGET_CFLAGS)" \
23 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
24 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
25 sc_cv_termios_ispeed="no" \
26 ./configure \
27 --target=$(GNU_TARGET_NAME) \
28 --host=$(GNU_TARGET_NAME) \
29 --build=$(GNU_HOST_NAME) \
30 --program-prefix="" \
31 --program-suffix="" \
32 --prefix=/usr \
33 --exec-prefix=/usr \
34 --bindir=/usr/bin \
35 --datadir=/usr/share \
36 --includedir=/usr/include \
37 --infodir=/usr/share/info \
38 --libdir=/usr/lib \
39 --libexecdir=/usr/lib \
40 --localstatedir=/var \
41 --mandir=/usr/share/man \
42 --sbindir=/usr/sbin \
43 --sysconfdir=/etc \
44 --enable-largefile \
45 --disable-nls \
46 --disable-libwrap \
47 --disable-readline \
48 )
49 touch $@
50
51$(WRKBUILD)/.built:
52 rm -rf $(WRKINST)
53 mkdir -p $(WRKINST)
54 $(MAKE) -C $(WRKBUILD) \
55 DESTDIR="$(WRKINST)" \
56 all install
57 touch $@
58
59$(IPKG_SOCAT):
60 install -d -m0755 $(IDIR_SOCAT)/usr/bin
61 $(CP) $(WRKINST)/usr/bin/socat $(IDIR_SOCAT)/usr/bin/
62 $(RSTRIP) $(IDIR_SOCAT)
63 $(IPKG_BUILD) $(IDIR_SOCAT) $(PACKAGE_DIR)
64
Note: See TracBrowser for help on using the repository browser.