mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00:00
64f1a2835d
AntiBlock program proxies DNS requests. The IP addresses of the specified domains are added to the routing table for routing through the specified interface. Signed-off-by: Khachatryan Karen <karen0734@gmail.com>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=antiblock
|
|
PKG_VERSION:=2.0.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/karen07/antiblock
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=3ea495e825edb75bc0bec9010d4b0195442dbcc745fc4d3150ae41ca11e9dfc4
|
|
|
|
PKG_MAINTAINER:=Khachatryan Karen <karen0734@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/antiblock
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libcurl
|
|
TITLE:=AntiBlock
|
|
URL:=https://github.com/karen07/antiblock
|
|
endef
|
|
|
|
define Package/antiblock/description
|
|
AntiBlock program proxies DNS requests.
|
|
The IP addresses of the specified domains are added to
|
|
the routing table for routing through the specified interface.
|
|
endef
|
|
|
|
define Package/antiblock/conffiles
|
|
/etc/config/antiblock
|
|
endef
|
|
|
|
define Package/antiblock/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/antiblock $(1)/usr/bin/antiblock
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/antiblock $(1)/etc/init.d/antiblock
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/etc/config/antiblock $(1)/etc/config/antiblock
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,antiblock))
|