mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
39 lines
758 B
Makefile
39 lines
758 B
Makefile
|
#
|
||
|
# Copyright (C) 2018-2023 Ycarus (Yannick Chabanois) <ycarus@zugaina.org> for OpenMPTCProuter
|
||
|
#
|
||
|
# Originally made by DairyMan@Whirlpool come from https://github.com/ofmodemsandmen/ROOterSource2305/tree/main/package/rooter/0routerspecfic/z8102
|
||
|
#
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=z8102
|
||
|
PKG_VERSION:=0.1
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_MAINTAINER:=Yannick Chabanois <contact@openmptcprouter.com>
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/z8102
|
||
|
SECTION:=OMR
|
||
|
CATEGORY:=OpenMPTCProuter
|
||
|
TITLE:=Install scripts for z8102
|
||
|
PKGARCH:=all
|
||
|
endef
|
||
|
|
||
|
define Package/z8102/description
|
||
|
Helper scripts to install scripts for z8102
|
||
|
endef
|
||
|
|
||
|
|
||
|
define Build/Compile
|
||
|
endef
|
||
|
|
||
|
define Package/z8102/install
|
||
|
$(CP) ./files/* $(1)/
|
||
|
|
||
|
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,z8102))
|