simple-adblock: bugfix - config update
[feed/packages.git] / net / simple-adblock / Makefile
1 # Copyright 2017-2018 Stan Grishin (stangri@melmac.net)
2 # TLD optimization written by Dirk Brenken (dev@brenken.org)
3 # This is free software, licensed under the GNU General Public License v3.
4
5 include $(TOPDIR)/rules.mk
6
7 PKG_NAME:=simple-adblock
8 PKG_VERSION:=1.8.4
9 PKG_RELEASE:=4
10 PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
11 PKG_LICENSE:=GPL-3.0-or-later
12
13 include $(INCLUDE_DIR)/package.mk
14
15 define Package/simple-adblock
16 SECTION:=net
17 CATEGORY:=Network
18 TITLE:=Simple AdBlock Service
19 DEPENDS:=+jshn +jsonfilter
20 PKGARCH:=all
21 endef
22
23 define Package/simple-adblock/description
24 Simple adblock script to block ad or abuse/malware domains with DNSMASQ or Unbound.
25 Script supports local/remote list of domains and hosts-files for both block-listing and allow-listing.
26 Please see https://docs.openwrt.melmac.net/simple-adblock/ for more information.
27
28 endef
29
30 define Package/simple-adblock/conffiles
31 /etc/config/simple-adblock
32 endef
33
34 define Build/Configure
35 endef
36
37 define Build/Compile
38 endef
39
40 define Package/simple-adblock/install
41 $(INSTALL_DIR) $(1)/etc/init.d
42 $(INSTALL_BIN) ./files/simple-adblock.init $(1)/etc/init.d/simple-adblock
43 sed -i "s|^\(PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(1)/etc/init.d/simple-adblock
44 $(INSTALL_DIR) $(1)/etc/config
45 $(INSTALL_CONF) ./files/simple-adblock.conf $(1)/etc/config/simple-adblock
46 $(INSTALL_DIR) $(1)/tmp
47 $(INSTALL_CONF) ./files/simple-adblock.conf.update $(1)/tmp/simple-adblock.conf.update
48 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
49 $(INSTALL_BIN) ./files/simple-adblock.hotplug $(1)/etc/hotplug.d/iface/80-simple-adblock
50 endef
51
52 define Package/simple-adblock/postinst
53 #!/bin/sh
54 # check if we are on real system
55 if [ -z "$${IPKG_INSTROOT}" ]; then
56 sed -f /tmp/simple-adblock.conf.update -i /etc/config/simple-adblock || true
57 /etc/init.d/simple-adblock enable
58 fi
59 exit 0
60 endef
61
62 define Package/simple-adblock/prerm
63 #!/bin/sh
64 # check if we are on real system
65 if [ -z "$${IPKG_INSTROOT}" ]; then
66 echo "Stopping service and removing rc.d symlink for simple-adblock"
67 /etc/init.d/simple-adblock stop || true
68 /etc/init.d/simple-adblock killcache || true
69 /etc/init.d/simple-adblock disable || true
70 fi
71 exit 0
72 endef
73
74 $(eval $(call BuildPackage,simple-adblock))