mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
54 lines
1.1 KiB
Makefile
Executable File
54 lines
1.1 KiB
Makefile
Executable File
#
|
|
# Copyright (C) 2007-2013 OpenWrt.org
|
|
# Copyright (C) 2010 Vertical Communications
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-proto-mbim
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=Dairyman
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/luci-proto-mbim/Default
|
|
VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)
|
|
URL:=http://openwrt.org/
|
|
MAINTAINER:=Dairyman
|
|
endef
|
|
|
|
define Package/luci-proto-mbim
|
|
$(call Package/luci-proto-mbim/Default)
|
|
SECTION:=net
|
|
CATEGORY:=ROOter
|
|
SUBMENU:=Protocols
|
|
TITLE:=Support for mbim
|
|
endef
|
|
|
|
define Package/luci-proto-mbim/description
|
|
This package contains LuCI support for mbim
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile/Default
|
|
endef
|
|
|
|
Build/Compile = $(Build/Compile/Default)
|
|
|
|
define Package/luci-proto-mbim/install
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,luci-proto-mbim))
|