summaryrefslogtreecommitdiffstats
path: root/package/base-files-network/Makefile
blob: 78c9981e6b48f9b8874ac34c0e58fb7cdcaa15f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Copyright (C) 2007-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk

PKG_NAME:=base-files-network
PKG_RELEASE:=1

PKG_BUILD_DEPENDS:=opkg/host

include $(INCLUDE_DIR)/package.mk

define Package/base-files-network
  SECTION:=base
  CATEGORY:=Base system
  DEPENDS:=@!USE_NETIFD
  TITLE:=Network scripts for the OpenWrt base system
  URL:=http://openwrt.org/
  VERSION:=$(PKG_RELEASE)
endef

define Package/base-files-network/description
 This package contains the network system scripts for OpenWrt.
endef

define Build/Prepare
	mkdir -p $(PKG_BUILD_DIR)
endef

define Build/Compile

endef

define Package/base-files-network/install
	$(CP) ./files/* $(1)/
endef


$(eval $(call BuildPackage,base-files-network))