72 lines
1.6 KiB
Makefile
Executable File
72 lines
1.6 KiB
Makefile
Executable File
# Copyright (C) 2020-2023 Hyy2001X <https://github.com/Hyy2001X>
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-adguardhome
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=20230123
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/luci-app-adguardhome
|
|
SECTION:=luci
|
|
CATEGORY:=LuCI
|
|
SUBMENU:=3. Applications
|
|
TITLE:=LuCI support for AdGuard Home [Modified by Hyy2001]
|
|
PKGARCH:=all
|
|
DEPENDS:=+!wget-ssl&&!curl:wget-ssl +xz-utils +xz
|
|
endef
|
|
|
|
define Package/luci-app-adguardhome/description
|
|
LuCI support for AdGuard Home
|
|
endef
|
|
|
|
define Build/Prepare
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/luci-app-adguardhome/conffiles
|
|
/usr/share/AdGuardHome/links.txt
|
|
/etc/config/AdGuardHome
|
|
endef
|
|
|
|
define Package/luci-app-adguardhome/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci
|
|
cp -pR ./luasrc/* $(1)/usr/lib/lua/luci
|
|
$(INSTALL_DIR) $(1)/
|
|
cp -pR ./root/* $(1)/
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/i18n
|
|
po2lmo ./po/zh-cn/AdGuardHome.po $(1)/usr/lib/lua/luci/i18n/AdGuardHome.zh-cn.lmo
|
|
endef
|
|
|
|
define Package/luci-app-adguardhome/postinst
|
|
#!/bin/sh
|
|
/etc/init.d/AdGuardHome enable >/dev/null 2>&1
|
|
enable=$(uci get AdGuardHome.AdGuardHome.enabled 2>/dev/null)
|
|
if [ "$enable" == "1" ]; then
|
|
/etc/init.d/AdGuardHome reload
|
|
fi
|
|
rm -f /tmp/luci-indexcache
|
|
rm -f /tmp/luci-modulecache/*
|
|
exit 0
|
|
endef
|
|
|
|
define Package/luci-app-adguardhome/prerm
|
|
#!/bin/sh
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
/etc/init.d/AdGuardHome disable
|
|
/etc/init.d/AdGuardHome stop
|
|
uci -q batch <<-EOF >/dev/null 2>&1
|
|
delete ucitrack.@AdGuardHome[-1]
|
|
commit ucitrack
|
|
EOF
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,luci-app-adguardhome))
|