1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 23:49:28 +03:00
openwrt-xburst/package/base-files-network/Makefile
nico 16913a975c package/base-files-network: fix udhcpc issues introduced in r28866 (closes: #10383)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28942 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-11-11 13:23:29 +00:00

46 lines
861 B
Makefile

#
# 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:=3
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))