source: freewrt/package/xsupplicant/Makefile@ 6fc4520e

freewrt_1_0 freewrt_2_0
Last change on this file since 6fc4520e was c8b93bd, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent

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

  • Property mode set to 100644
File size: 2.1 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:= xsupplicant
10PKG_VERSION:= 1.2.3
11PKG_RELEASE:= 1
12PKG_MD5SUM:= c9b17b2e1879bac85c583980338fed85
13
14PKG_SOURCE_URL:= @SF/open1x
15PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
16
17include $(TOPDIR)/mk/package.mk
18
19$(eval $(call PKG_template,XSUPPLICANT,xsupplicant,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21$(WRKBUILD)/.configured:
22 (cd $(WRKBUILD); rm -rf config.{cache,status}; \
23 touch configure.in; \
24 touch aclocal.m4; \
25 touch Makefile.in; \
26 touch configure; \
27 $(TARGET_CONFIGURE_OPTS) \
28 CFLAGS="$(TARGET_CFLAGS)" \
29 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include \
30 -I$(WRKBUILD)/lib/libxsupconfig/ \
31 -I$(STAGING_DIR)/usr/include/madwifi" \
32 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
33 ./configure \
34 --target=$(GNU_TARGET_NAME) \
35 --host=$(GNU_TARGET_NAME) \
36 --build=$(GNU_HOST_NAME) \
37 --program-prefix="" \
38 --program-suffix="" \
39 --prefix=/usr \
40 --exec-prefix=/usr \
41 --bindir=/usr/bin \
42 --datadir=/usr/share \
43 --includedir=/usr/include \
44 --infodir=/usr/share/info \
45 --libdir=/usr/lib \
46 --libexecdir=/usr/lib \
47 --localstatedir=/var \
48 --mandir=/usr/share/man \
49 --sbindir=/usr/sbin \
50 --sysconfdir=/etc \
51 --enable-largefile \
52 --disable-nls \
53 --with-openssl="$(STAGING_DIR)/usr" \
54 --with-madwifi-path="$(STAGING_DIR)/usr/include/madwifi" \
55 );
56 touch $@
57
58$(WRKBUILD)/.built:
59 rm -rf $(WRKINST)
60 mkdir -p $(WRKINST)
61 $(MAKE) -C $(WRKBUILD) \
62 DESTDIR=$(WRKINST) \
63 all install
64 touch $@
65
66$(IPKG_XSUPPLICANT):
67 install -d -m0755 $(IDIR_XSUPPLICANT)/etc
68 install -m0644 $(WRKBUILD)/etc/xsupplicant.conf $(IDIR_XSUPPLICANT)/etc/
69 install -d -m0755 $(IDIR_XSUPPLICANT)/usr/bin
70 $(CP) $(WRKINST)/usr/bin/xsup_* $(IDIR_XSUPPLICANT)/usr/bin/
71 install -d -m0755 $(IDIR_XSUPPLICANT)/usr/sbin
72 $(CP) $(WRKINST)/usr/sbin/xsupplicant $(IDIR_XSUPPLICANT)/usr/sbin/
73 $(RSTRIP) $(IDIR_XSUPPLICANT)
74 $(IPKG_BUILD) $(IDIR_XSUPPLICANT) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.