source: freewrt/package/broadcom-nas/Makefile@ 6fc4520e

freewrt_1_0 freewrt_2_0
Last change on this file since 6fc4520e was e6cd9e6, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago
  • add experimental broadcom-nas package for WPA/WPA2 support of broadcom wireless drivers.
  • move all broadcom specific userland applications to Base - Board Specific - Broadcom
  • move dnsmasq, iptables and bridge to Network

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

  • Property mode set to 100644
File size: 1.3 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:= broadcom-nas
10PKG_VERSION:= 0.1
11PKG_RELEASE:= 1
12PKG_MD5SUM:= 6de3f21a1286197222e2fbc13e1f813b
13PKG_INIT:= 49
14
15PKG_SOURCE_URL:= http://www.freewrt.org/distfiles
16PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
17
18include $(TOPDIR)/mk/package.mk
19
20$(eval $(call PKG_template,BROADCOM_NAS,broadcom-nas,$(PKG_RELEASE),$(ARCH)))
21
22$(WRKBUILD)/.configured:
23 touch $@
24
25$(WRKBUILD)/.built:
26 touch $@
27
28$(IPKG_BROADCOM_NAS):
29 $(INSTALL_DIR) $(IDIR_BROADCOM_NAS)/etc/hotplug.d/net
30 $(INSTALL_DIR) $(IDIR_BROADCOM_NAS)/etc/init.d
31 $(INSTALL_DIR) $(IDIR_BROADCOM_NAS)/usr/lib
32 $(INSTALL_DIR) $(IDIR_BROADCOM_NAS)/usr/sbin
33 $(INSTALL_DATA) $(WRKBUILD)/libbcmcrypto.so $(IDIR_BROADCOM_NAS)/usr/lib
34 $(INSTALL_BIN) $(WRKBUILD)/nas $(IDIR_BROADCOM_NAS)/usr/sbin
35 ln -sf ../sbin/nas $(IDIR_BROADCOM_NAS)/usr/sbin/nas4not
36 ln -sf ../sbin/nas $(IDIR_BROADCOM_NAS)/usr/sbin/nas4wds
37 $(INSTALL_BIN) $(WRKBUILD)/nas.init \
38 $(IDIR_BROADCOM_NAS)/etc/init.d/S$(PKG_INIT)nas
39 $(INSTALL_DATA) $(WRKBUILD)/nas.hotplug \
40 $(IDIR_BROADCOM_NAS)/etc/hotplug.d/net/00-nas
41 $(RSTRIP) $(IDIR_BROADCOM_NAS)
42 $(IPKG_BUILD) $(IDIR_BROADCOM_NAS) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.