793cb14d5a6909eda846cbeed19d4b7d52b74315
[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.3
9 PKG_RELEASE:=3
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 PKGARCH:=all
20 endef
21
22 define Package/simple-adblock/description
23 This service provides DNSMASQ or Unbound based ad blocking.
24 Please see the project's README at github for further information.
25
26 endef
27
28 define Package/simple-adblock/conffiles
29 /etc/config/simple-adblock
30 endef
31
32 define Build/Prepare
33 mkdir -p $(PKG_BUILD_DIR)/files/
34 $(CP) ./files/simple-adblock.init $(PKG_BUILD_DIR)/files/simple-adblock.init
35 sed -i "s|^\(PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(PKG_BUILD_DIR)/files/simple-adblock.init
36 endef
37
38 define Build/Configure
39 endef
40
41 define Build/Compile
42 endef
43
44 define Package/simple-adblock/install
45 $(INSTALL_DIR) $(1)/etc/init.d
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/simple-adblock.init $(1)/etc/init.d/simple-adblock
47 $(INSTALL_DIR) $(1)/etc/config
48 $(INSTALL_CONF) ./files/simple-adblock.conf $(1)/etc/config/simple-adblock
49 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
50 $(INSTALL_BIN) ./files/simple-adblock.hotplug $(1)/etc/hotplug.d/iface/80-simple-adblock
51 endef
52
53 define Package/simple-adblock/postinst
54 #!/bin/sh
55 # check if we are on real system
56 if [ -z "$${IPKG_INSTROOT}" ]; then
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))