* update default config for new oisd.nl lists * conf.update file to migrate oisd.nl lists to the new format * introduce AdBlockPlus lists support (new oisd.nl format) * longer wait for WAN up/gateway detection * make load_environemnt only execute once to suppress duplicate warnings/errors PS. While I was testing this, oisd.nl has brought back the old domains lists as well, so this version supports both as I'm unclear as to why the "big" ABPlus list is only 6.2Mb where as the "big" domains list is whopping 19.9Mb. Signed-off-by: Stan Grishin <stangri@melmac.ca>
72 lines
2.1 KiB
Makefile
72 lines
2.1 KiB
Makefile
# Copyright 2017-2022 Stan Grishin (stangri@melmac.ca)
|
|
# TLD optimization written by Dirk Brenken (dev@brenken.org)
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=simple-adblock
|
|
PKG_VERSION:=1.9.4
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/simple-adblock
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Simple AdBlock Service
|
|
URL:=https://docs.openwrt.melmac.net/simple-adblock/
|
|
DEPENDS:=+jshn +wget
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/simple-adblock/description
|
|
Simple adblock script to block ad or abuse/malware domains with DNSMASQ or Unbound.
|
|
Script supports local/remote list of domains and hosts-files for both block-listing and allow-listing.
|
|
Please see https://docs.openwrt.melmac.net/simple-adblock/ for more information.
|
|
endef
|
|
|
|
define Package/simple-adblock/conffiles
|
|
/etc/config/simple-adblock
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/simple-adblock/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DIR) $(1)/tmp
|
|
$(INSTALL_BIN) ./files/simple-adblock.init $(1)/etc/init.d/simple-adblock
|
|
$(SED) "s|^\(readonly PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(1)/etc/init.d/simple-adblock
|
|
$(INSTALL_CONF) ./files/simple-adblock.conf $(1)/etc/config/simple-adblock
|
|
$(INSTALL_DATA) ./files/simple-adblock.conf.update $(1)/tmp/simple-adblock.conf.update
|
|
endef
|
|
|
|
define Package/simple-adblock/postinst
|
|
#!/bin/sh
|
|
# check if we are on real system
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
sed -f /tmp/simple-adblock.conf.update -i /etc/config/simple-adblock || true
|
|
/etc/init.d/simple-adblock enable
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
define Package/simple-adblock/prerm
|
|
#!/bin/sh
|
|
# check if we are on real system
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
echo "Stopping service and removing rc.d symlink for simple-adblock"
|
|
/etc/init.d/simple-adblock stop || true
|
|
/etc/init.d/simple-adblock killcache || true
|
|
/etc/init.d/simple-adblock disable || true
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,simple-adblock))
|