lede/package/wwan/app/luci-proto-mbim/Makefile
Beginner b597493248
wwan/app: code alignment (#10850)
Signed-off-by: Beginner-Go <70857188+Beginner-Go@users.noreply.github.com>
2023-02-04 21:45:21 +08:00

54 lines
1.1 KiB
Makefile

#
# 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))