2021-09-14 00:47:49 +08:00
|
|
|
#!/bin/bash
|
|
|
|
# --------------------------------------------------------
|
|
|
|
# Script for creating ACL file for each LuCI APP
|
2021-09-24 19:46:16 +08:00
|
|
|
sed -i \
|
|
|
|
-e "s/\(PKG_HASH\|PKG_MD5SUM\|PKG_MIRROR_HASH\):=.*/\1:=skip/" \
|
2021-09-24 23:34:37 +08:00
|
|
|
-e 's?2. Clash For OpenWRT?3. Applications?' \
|
2021-09-24 19:46:16 +08:00
|
|
|
-e 's?\.\./\.\./luci.mk?$(TOPDIR)/feeds/luci/luci.mk?' \
|
|
|
|
-e 's/ca-certificates/ca-bundle/' \
|
|
|
|
*/Makefile
|
2021-09-14 00:47:49 +08:00
|
|
|
|
2021-09-24 19:46:16 +08:00
|
|
|
exit 0
|