forked from fantastic-packages/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
162 lines (147 loc) · 3.41 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#
# Copyright (C) 2023 muink
#
# This is free software, licensed under the GNU General Public License v3.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=fantastic-packages
PKG_VERSION:=1.0
PKG_RELEASE:=20230428
PKG_MAINTAINER:=muink <hukk1996@gmail.com>
PKG_LICENSE:=GPL-3
PKG_LICENSE_FILES:=LICENSE
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)/Default
SECTION:=utils
CATEGORY:=Utilities
TITLE:=self-use openwrt extended packages
URL:=https://github.com/muink/fantastic-packages
DEPENDS:=
PKGARCH:=all
endef
define Package/$(PKG_NAME)-packages
$(call Package/$(PKG_NAME)/Default)
DEPENDS+:=\
+alwaysonline \
+chinadns-ng \
+einat-ebpf \
+fantastic-keyring \
+fantastic-packages-feeds \
+go-stun \
+internet-detector \
+natmapt \
+natter \
+netdata-ssl \
+pcap-dnsproxy \
+php-nginx \
+plain-nginx \
+rgmac \
+shadowsocks-rust \
+speedtest-go \
+stuntman \
+Toolkit \
+uci-alwaysonline
endef
define Package/$(PKG_NAME)-luci
$(call Package/$(PKG_NAME)/Default)
DEPENDS+:=\
+luci-app-alwaysonline \
+luci-app-change-mac \
+luci-app-cpu-perf \
+luci-app-cpu-status \
+luci-app-cpu-status-mini \
+luci-app-diskman \
+luci-app-disks-info \
+luci-app-dnsproxy \
+luci-app-einat \
+luci-app-interfaces-statistics \
+luci-app-internet-detector \
+luci-app-ipinfo \
+luci-app-log-viewer \
+luci-app-natmapt \
+luci-app-natter \
+luci-app-netdata \
+luci-app-netspeedtest \
+luci-app-packagesync \
+luci-app-pcap-dnsproxy \
+luci-app-qbittorrent \
+luci-app-ssrust \
+luci-app-temp-status \
+luci-app-tinyfilemanager \
+luci-app-tn-netports \
+luci-app-xray \
+luci-app-xray-status \
+luci-theme-argon \
+luci-app-argon-config
endef
define Package/$(PKG_NAME)
$(call Package/$(PKG_NAME)/Default)
DEPENDS+:=\
+alwaysonline \
+chinadns-ng \
+einat-ebpf \
+fantastic-keyring \
+fantastic-packages-feeds \
+go-stun \
+internet-detector \
+natmapt \
+natter \
+netdata-ssl \
+pcap-dnsproxy \
+php-nginx \
+plain-nginx \
+rgmac \
+shadowsocks-rust \
+speedtest-go \
+stuntman \
+Toolkit \
+uci-alwaysonline \
+luci-app-alwaysonline \
+luci-app-change-mac \
+luci-app-cpu-perf \
+luci-app-cpu-status \
+luci-app-cpu-status-mini \
+luci-app-diskman \
+luci-app-disks-info \
+luci-app-dnsproxy \
+luci-app-einat \
+luci-app-interfaces-statistics \
+luci-app-internet-detector \
+luci-app-ipinfo \
+luci-app-log-viewer \
+luci-app-natmapt \
+luci-app-natter \
+luci-app-netdata \
+luci-app-netspeedtest \
+luci-app-packagesync \
+luci-app-pcap-dnsproxy \
+luci-app-qbittorrent \
+luci-app-ssrust \
+luci-app-temp-status \
+luci-app-tinyfilemanager \
+luci-app-tn-netports \
+luci-app-xray \
+luci-app-xray-status \
+luci-theme-argon \
+luci-app-argon-config
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/$(PKG_NAME)/conffiles
endef
define Package/$(PKG_NAME)/postinst
endef
define Package/$(PKG_NAME)/prerm
endef
define Package/$(PKG_NAME)/install/Default
:
endef
Package/$(PKG_NAME)-packages/install = $(Package/$(PKG_NAME)/install/Default)
Package/$(PKG_NAME)-luci/install = $(Package/$(PKG_NAME)/install/Default)
Package/$(PKG_NAME)/install = $(Package/$(PKG_NAME)/install/Default)
$(eval $(call BuildPackage,$(PKG_NAME)-packages))
$(eval $(call BuildPackage,$(PKG_NAME)-luci))
$(eval $(call BuildPackage,$(PKG_NAME)))