Skip to content

Commit

Permalink
tree-wide: normalize architectures (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjm2473 authored May 22, 2024
1 parent 1efc0b0 commit 20531b6
Show file tree
Hide file tree
Showing 23 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
2. `META_DESCRIPTION:=` 中文描述
3. `META_AUTHOR:=` 是作者名称,如果是非个人作者则填组织或者公司名称
4. `META_DEPENDS:=` 的第一个应该是能代表这个APP的主包,方便作为版本更新的依据,不要将其他插件可能依赖的包加到这里,以免卸载时将其他插件也卸载了,如果需要添加额外的包,参考下面的[#依赖额外的包](#依赖额外的包)
5. `META_ARCH:=` 用来填写支持的处理器架构,如果是架构无关的应用或者OpenWRT官方仓库支持的软件包则不需要这一行。如果有多个架构用空格隔开,例如`x86_64 aarch64_cortex-a53`
5. `META_ARCH:=` 用来填写支持的处理器架构,如果是架构无关的应用或者OpenWRT官方仓库支持的软件包则不需要这一行。如果有多个架构用空格隔开,例如`x86_64 aarch64`。目前可能的取值有`x86_64``x86``aarch64``arm`
6. `PKG_VERSION:=` 版本号,尽量跟主包保持一致
7. `PKG_RELEASE:=` 元数据修正版本,必须是数字,可以使用 `1``2``3` 或者日期如 `20240314`。在版本号 `PKG_VERSION` 未变更的情况下可以通过提升 `PKG_RELEASE` 来产生更新。
8. `META_WEBSITE:=` 官网链接(注意如果链接包含#,需要转义成\\#)
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-alist/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-i18n-alist-zh-cn +alist +luci-app-alist
META_DESCRIPTION:=一个支持多存储的文件列表程序,提供 WEB 界面和 WebDAV 服务。(如果从 3.29.x 升级失败,那就先卸载再安装)
META_DESCRIPTION.en:=A file list program that supports multiple storage.
META_AUTHOR:=alist-org/sbwml
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/nas/alist
META_WEBSITE:=https://github.com/alist-org/alist
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-aliyundrive-webdav/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ META_TITLE:=阿里云盘WebDAV
META_DEPENDS:=+aliyundrive-webdav +luci-i18n-aliyundrive-webdav-zh-cn +luci-app-aliyundrive-webdav
META_DESCRIPTION:=阿里云盘WebDAV服务,主要使用场景为配合支持WebDAV协议的客户端实现直接观看云盘视频内容,支持上传文件,但受限于WebDAV协议不支持文件秒传。
META_AUTHOR:=messense
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/aliyundrive-webdav
META_WEBSITE:=https://github.com/messense/aliyundrive-webdav
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-baidupcs-web/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ META_TITLE:=BaiduPCS-Web
META_DEPENDS:=+baidupcs-web +luci-app-baidupcs-web
META_DESCRIPTION:=基于BaiduPCS-Go, 可以让你高效的使用百度云。
META_AUTHOR:=Erope/KFERMercer
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/nas/baidupcs-web
META_WEBSITE:=https://github.com/Erope/BaiduPCS-Go
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-cpulimit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ META_TITLE:=CPU频率限制
META_DEPENDS:=+cpulimit-ng +luci-app-cpulimit +luci-i18n-cpulimit-zh-cn
META_DESCRIPTION:=CPU频率限制是一款可以调整CPU占用率的插件
META_AUTHOR:=Angelo Marletta
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=system tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/system/cpulimit
META_WEBSITE:=https://code.google.com/archive/p/cpulimit-ng
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-ddnsto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+ddnsto +luci-app-ddnsto +luci-i18n-ddnsto-zh-cn
META_DESCRIPTION:=DDNS.TO内网穿透,可以外网远程你的路由器
META_DESCRIPTION.en:=DDNS.TO is a reverse proxy software that does not need to deploy a server. It is mainly used to manage intranet devices on the Internet through a browser.
META_AUTHOR:=xiaobao
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=networking service
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/ddnsto
META_WEBSITE:=https://www.ddnsto.com/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-feishunet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-feishuvpn +luci-i18n-feishuvpn-zh-cn +docker-deps
META_DESCRIPTION:=用于nat打洞,可以直接建立两端无公网端点的直连隧道
META_DESCRIPTION.en:=Used for NAT drilling, it can directly establish a direct tunnel with no public network endpoints at both ends
META_AUTHOR:=xingkongwangbin
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=networking service
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/feishuvpn
META_WEBSITE:=https://www.feishunet.com/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-gowebdav/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ META_TITLE:=Go-WebDAV
META_DEPENDS:=+gowebdav +luci-i18n-gowebdav-zh-cn +luci-app-gowebdav
META_DESCRIPTION:=OpenWrt-WebDAV服务端,可为OpenWrt开启WebDav服务。
META_AUTHOR:=CN_SZTL/1715173329
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/nas/gowebdav
META_WEBSITE:=https://github.com/1715173329/gowebdav
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-homebox/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ META_TITLE:=Homebox内网测速
META_DEPENDS:=+homebox +luci-app-homebox +luci-i18n-homebox-zh-cn
META_DESCRIPTION:=Homebox是一款局域网测速工具
META_AUTHOR:=Bradley Xu
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/homebox
META_WEBSITE:=https://github.com/XGHeaven/homebox
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-istorex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-istorex +luci-js-deps
META_DESCRIPTION:=为iStoreOS适配的全新首页。
META_DESCRIPTION.en:=A new homepage for iStoreOS.
META_AUTHOR:=Carseason
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net system
META_LUCI_ENTRY:=/cgi-bin/luci/admin/istorex
META_WEBSITE:=https://github.com/linkease/nas-packages-luci
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-linkease/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+linkease +luci-app-linkease +luci-i18n-linkease-zh-cn
META_DESCRIPTION:=易有云提供文件的外网访问,相册备份,文件同步,异地组网功能。
META_DESCRIPTION.en:=LinkEase is a private cloud storage with its own remote connection to access personal files anytime, anywhere
META_AUTHOR:=xiaobao
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=nas service
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/linkease
META_WEBSITE:=https://www.linkease.com/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-lucky/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-lucky +luci-i18n-lucky-zh-cn +lucky
META_DESCRIPTION:=动态域名ddns-go服务,替代socat主要用于公网IPv6 tcp/udp转内网ipv4,http/https反向代理。
META_DESCRIPTION.en:=Dynamic domain name ddns-go service, instead of socat, is mainly used for public network IPv6 tcp/udp to intranet ipv4, http/https reverse proxy.
META_AUTHOR:=古大羊/sirpdboy
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/lucky
META_WEBSITE:=https://lucky666.cn/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-mfun/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ META_DEPENDS:=+luci-app-mfun +luci-i18n-mfun-zh-cn
META_DESCRIPTION:=轻量的影音媒体库
META_DESCRIPTION.en:=Mfun is an multimedia program.
META_AUTHOR:=Carseason
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=nas multimedia
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/mfun
META_WEBSITE:=https://www.mfun.cloud
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-modem/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-modem +luci-i18n-modem-zh-cn +quectel-CM-5G +sms-tool
META_DESCRIPTION:=Modem 支持USB和PCIE两种通信方式接入的模块,支持多模块的信息查看和控制。
META_DESCRIPTION.en:=Modem supports modems connected via USB and PCIE communication methods, and supports information viewing and control of multiple modems.
META_AUTHOR:=Siriling <[email protected]>
META_ARCH:=x86_64 aarch64_generic aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/network/modem
META_WEBSITE:=https://github.com/Siriling/5G-Modem-Support/tree/main/luci-app-modem
Expand Down
2 changes: 0 additions & 2 deletions applications/app-meta-nginx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ include $(TOPDIR)/rules.mk
PKG_VERSION:=0.0.1
PKG_RELEASE:=1
META_TITLE:=Nginx
META_TITLE.en:=Nginx
META_DEPENDS:=+luci-nginxer
META_DESCRIPTION:=nginx服务
META_DESCRIPTION.en:=nginx server
META_AUTHOR:=nginx/Carseason
META_ARCH:=x86_64 aarch64_cortex-a53
META_TAGS:=system
META_WEBSITE:=https://nginx.org/en/

Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-owxbyz/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ META_DEPENDS:=+owxbyz
META_DESCRIPTION:=驿站 - 租用闲置设备资源,躺赚积分收益。影视VIP、音乐VIP、话费随心兑换。【玩物科技出品】
META_AUTHOR:=玩物科技
META_TAGS:=net tool
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/owxbyz
META_WEBSITE:=https://yz.iepose.com/?from=istore

Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-poweroff/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-i18n-poweroff-zh-cn +luci-app-poweroff
META_DESCRIPTION:=简单的关机
META_DESCRIPTION.en:=Shutdown your device
META_AUTHOR:=eSir Playground
META_ARCH:=x86_64 aarch64_generic aarch64_cortex-a53
META_ARCH:=x86_64 aarch64 x86 arm
META_TAGS:=system tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/system/poweroff
META_WEBSITE:=https://github.com/esirplayground/luci-app-poweroff
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-qbittorrent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+qBittorrent-static +luci-app-qbittorrent +luci-i18n-qbittorrent-z
META_DESCRIPTION:=专业磁力种子下载工具。
META_DESCRIPTION.en:=A free and reliable P2P BitTorrent client.
META_AUTHOR:=The qBittorrent project
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=download tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/nas/qBittorrent
META_WEBSITE:=https://www.qbittorrent.org/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-rebatedog/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-rebatedog +luci-i18n-rebatedog-zh-cn
META_DESCRIPTION:=一款跨平台的淘客发单系统
META_DESCRIPTION.en:=A multi platform system for TaoKe.
META_AUTHOR:=泡泡
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=system nas
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/rebatedog
META_WEBSITE:=https://github.com/zhaoyangguang/rebatedog
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-routerdog/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-app-routerdog +luci-i18n-routerdog-zh-cn +routergo
META_DESCRIPTION:=为iStoreOS和Openwrt提供NAS界面和APP
META_DESCRIPTION.en:=The new naspage and app for iStoreOS or Openwrt.
META_AUTHOR:=Carseason
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=system nas
META_LUCI_ENTRY:=/cgi-bin/luci/admin/routerdog
META_WEBSITE:=https://www.routerdog.top/
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-sunpanel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ META_DEPENDS:=+luci-i18n-sunpanel-zh-cn +sunpanel +luci-app-sunpanel
META_DESCRIPTION:=一个易用好看的NAS导航页。
META_DESCRIPTION.en:=Server, NAS navigation panel, Homepage, Browser homepage.
META_AUTHOR:=hslr-s/sun-panel
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/sunpanel
META_WEBSITE:=https://sun-panel-doc.enianteam.com
Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-uugamebooster/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ META_AUTHOR:=网易
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/uuplugin
META_WEBSITE:=https://uu.163.com/
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64

include ../../meta.mk

Expand Down
2 changes: 1 addition & 1 deletion applications/app-meta-xunyou/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ META_AUTHOR:=xunyou
META_TAGS:=net tool
META_LUCI_ENTRY:=/cgi-bin/luci/admin/services/xunyou
META_WEBSITE:=https://www.xunyou.com/
META_ARCH:=x86_64 aarch64_cortex-a53
META_ARCH:=x86_64 aarch64

include ../../meta.mk

Expand Down

0 comments on commit 20531b6

Please sign in to comment.