57 lines
2.1 KiB
Makefile
57 lines
2.1 KiB
Makefile
SHELL = /bin/bash -o pipefail
|
|
export PATH := $(shell go env GOPATH)/bin:$(PATH)
|
|
ROOT_DIR=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
BUILD_DIR=$(ROOT_DIR)/.build
|
|
AZ_DIR=$(ROOT_DIR)/antizapret-pac-generator-light
|
|
GEOIP_DIR=$(ROOT_DIR)/geoip
|
|
GEOSITE_DIR=$(ROOT_DIR)/domain-list-community
|
|
DATA_DIR=$(ROOT_DIR)/data
|
|
|
|
.PHONY: all submodules az geoip geosite release
|
|
|
|
all: submodules az geoip geosite
|
|
@echo Done.
|
|
|
|
submodules:
|
|
@git submodule update --init --recursive
|
|
|
|
builddir:
|
|
ifeq (,$(wildcard $(BUILD_DIR)))
|
|
@mkdir -p $(BUILD_DIR)
|
|
endif
|
|
|
|
az: builddir
|
|
@bash -c 'set -euo pipefail; \
|
|
cd $(AZ_DIR) && \
|
|
patch --forward < $(DATA_DIR)/az-cyrillic-idn-fix.patch || true && \
|
|
./update.sh && \
|
|
./parse.sh'
|
|
@echo Antizapret data has been processed.
|
|
|
|
geoip: builddir
|
|
@cat $(DATA_DIR)/geoip-generator-config.json > $(GEOIP_DIR)/config.json
|
|
@mkdir -p $(GEOIP_DIR)/data
|
|
@cp $(AZ_DIR)/result/iplist_all.txt $(GEOIP_DIR)/data/ru-blocked-ips-all
|
|
@cp $(AZ_DIR)/result/iplist_blockedbyip.txt $(GEOIP_DIR)/data/ru-blocked-ips-directblock
|
|
@cp $(AZ_DIR)/result/iplist_blockedbyip_noid2971.txt $(GEOIP_DIR)/data/ru-blocked-ips-noid2971
|
|
ifeq (,$(wildcard $(GEOIP_DIR)/geoip-src.dat))
|
|
@curl -fsSL https://github.com/v2fly/geoip/releases/latest/download/geoip.dat -o $(GEOIP_DIR)/geoip-src.dat
|
|
endif
|
|
@cd $(GEOIP_DIR) && go run ./
|
|
@mv $(GEOIP_DIR)/output/dat/geoip.dat $(BUILD_DIR)/geoip.dat
|
|
@echo Built fresh geoip.dat
|
|
|
|
geosite: builddir
|
|
@cp $(AZ_DIR)/result/hostlist_zones.txt $(GEOSITE_DIR)/data/category-ru-blocked-zones
|
|
@cp $(AZ_DIR)/result/hostlist_original.txt $(GEOSITE_DIR)/data/category-ru-blocked-domains
|
|
@cd $(GEOSITE_DIR) && go run ./ --outputdir=$(BUILD_DIR) --outputname=geosite.dat
|
|
@echo Built fresh geosite.dat
|
|
|
|
VERSION := $(shell date +%Y%m%d%H%M%S)
|
|
release:
|
|
@echo Tagging as $(VERSION)
|
|
@curl -X POST \
|
|
https://gitea.neur0tx.site/api/v1/repos/xray-addons/geoip-geosite-with-ru-blocklist/tags?token=${GITEA_API_KEY} \
|
|
-H "Accept: application/json" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"message": "$(VERSION): daily release from ci","tag_name": "$(VERSION)","target": "master"}'
|