mirror of
https://github.com/kuling321/inode7.1_for_openwrt.git
synced 2026-04-05 11:01:23 +08:00
wuliclient init
This commit is contained in:
34
wuliclient/Makefile
Normal file
34
wuliclient/Makefile
Normal file
@@ -0,0 +1,34 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
|
||||
PKG_NAME:=wuliclientBulidl
|
||||
PKG_RELEASE:=1.0
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
PKGARCH:=all
|
||||
TITLE:= $(PKG_NAME)
|
||||
MAINTAINER:=K.L
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/description
|
||||
wuliclient for Inode7.1 portal in zhibt
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
mkdir -p $(PKG_BUILD_DIR)
|
||||
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
||||
endef
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
echo "Here is Package/install"
|
||||
$(INSTALL_DIR) $(1)/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,$(PKG_NAME)))
|
||||
Reference in New Issue
Block a user