mirror of
				https://github.com/MetaCubeX/meta-rules-dat.git
				synced 2025-11-03 17:46:54 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
GREEN='\033[0;32m'
 | 
						|
NC='\033[0m' # no color
 | 
						|
 | 
						|
# GOPATH=$(mktemp -d)
 | 
						|
# export GOPATH=$GOPATH
 | 
						|
V2RAY_FOLDER="$GOPATH/v2ray"
 | 
						|
 | 
						|
GEOIP_REPO="github.com/ilouiss/geoip"
 | 
						|
GEOSITE_REPO="github.com/v2ray/domain-list-community"
 | 
						|
getGFWLIST_SCRIPT="https://raw.githubusercontent.com/cokebar/gfwlist2dnsmasq/master/gfwlist2dnsmasq.sh"
 | 
						|
CHINA_DOMAINS_URL="https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf"
 | 
						|
ADBLOCK_DOMAINS_URL="https://raw.githubusercontent.com/h2y/Shadowrocket-ADBlock-Rules/master/factory/resultant/ad.list"
 | 
						|
 | 
						|
echo -e "${GREEN}>>> downloading $GEOIP_REPO...${NC}"
 | 
						|
go get -insecure -v -u -d $GEOIP_REPO
 | 
						|
cd $GOPATH/src/$GEOIP_REPO
 | 
						|
echo -e "${GREEN}>>> building geoip.dat file...${NC}"
 | 
						|
go run main.go
 | 
						|
mv geoip.dat $V2RAY_FOLDER/geoip.dat
 | 
						|
 | 
						|
echo -e "${GREEN}>>> downloading $GEOSITE_REPO...${NC}"
 | 
						|
go get -insecure -v -u -d $GEOSITE_REPO
 | 
						|
cd $GOPATH/src/$GEOSITE_REPO
 | 
						|
 | 
						|
echo -e "${GREEN}>>> generating GFWList...${NC}"
 | 
						|
curl -sSL $getGFWLIST_SCRIPT \
 | 
						|
  | bash -s -- -l -o $GOPATH/src/$GEOSITE_REPO/data/gfwlist
 | 
						|
 | 
						|
echo -e "${GREEN}>>> generating Chinese domains list...${NC}"
 | 
						|
curl -sSL $CHINA_DOMAINS_URL \
 | 
						|
  | awk -F '/' '{print $2}' \
 | 
						|
  > $GOPATH/src/$GEOSITE_REPO/data/chinalist
 | 
						|
 | 
						|
echo -e "${GREEN}>>> generating Adblock domains list...${NC}"
 | 
						|
curl -sSL $ADBLOCK_DOMAINS_URL \
 | 
						|
  | grep -Eov '^(\d{1,3}\.){3}\d{1,3}' \
 | 
						|
  | grep -Eov '^[^.]$' \
 | 
						|
  | grep -Eo  '^(([a-zA-Z0-9]+[a-zA-Z0-9-]*)+\.)+[a-zA-Z0-9]{2,}$' \
 | 
						|
  > $GOPATH/src/$GEOSITE_REPO/data/adblocklist
 | 
						|
 | 
						|
echo -e "${GREEN}>>> building geosite.dat file...${NC}"
 | 
						|
go run main.go
 | 
						|
mv dlc.dat $V2RAY_FOLDER/geosite.dat
 | 
						|
 | 
						|
echo -e "${GREEN}完成啦!🌈${NC}"
 | 
						|
 | 
						|
go version
 | 
						|
      go get -v -t -d github.com/v2ray/domain-list-community/...
 |