2025-08-15 09:05:39 +00:00
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
2025-08-18 01:35:14 +00:00
|
|
|
|
# ===== Require Red Hat Enterprise Linux / Rocky Linux / AlmaLinux / CentOS Stream =======
|
2025-08-18 01:29:38 +00:00
|
|
|
|
if [[ -r /etc/os-release ]]; then
|
|
|
|
|
. /etc/os-release
|
|
|
|
|
case "$ID" in
|
2025-08-18 01:32:29 +00:00
|
|
|
|
rhel|rocky|almalinux|centos)
|
2025-08-18 01:29:38 +00:00
|
|
|
|
echo "[OK] Detected supported system: $NAME $VERSION_ID"
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
echo "[ERROR] Unsupported system: $NAME ($ID)."
|
2025-08-18 01:32:29 +00:00
|
|
|
|
echo "This script only supports Red Hat Enterprise Linux / Rocky Linux / AlmaLinux / CentOS Stream."
|
2025-08-18 01:29:38 +00:00
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
else
|
|
|
|
|
echo "[ERROR] Cannot detect system (missing /etc/os-release)."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Config & Parse arguments =========================================================
|
|
|
|
|
VERSION_ARG="${1:-}" # Pass version number like 7.13.8, or leave empty
|
|
|
|
|
WITH_CORE="both" # Default: bundle both xray+sing-box
|
|
|
|
|
AUTOSTART=0 # 1 = enable system-wide autostart (/etc/xdg/autostart)
|
2025-08-18 07:03:17 +00:00
|
|
|
|
FORCE_NETCORE=0 # --netcore => skip archive bundle, use separate downloads
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# If the first argument starts with --, don’t treat it as version number
|
2025-08-15 13:16:09 +00:00
|
|
|
|
if [[ "${VERSION_ARG:-}" == --* ]]; then
|
|
|
|
|
VERSION_ARG=""
|
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Take the first non --* argument as version, discard it
|
2025-08-15 13:16:09 +00:00
|
|
|
|
if [[ -n "${VERSION_ARG:-}" ]]; then shift || true; fi
|
2025-08-15 12:24:27 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Parse remaining optional arguments
|
2025-08-15 09:05:39 +00:00
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
|
|
|
case "$1" in
|
2025-08-15 13:16:09 +00:00
|
|
|
|
--with-core) WITH_CORE="${2:-both}"; shift 2;;
|
|
|
|
|
--autostart) AUTOSTART=1; shift;;
|
2025-08-18 01:10:18 +00:00
|
|
|
|
--xray-ver) XRAY_VER="${2:-}"; shift 2;; # Specify xray version (optional)
|
|
|
|
|
--singbox-ver) SING_VER="${2:-}"; shift 2;; # Specify sing-box version (optional)
|
2025-08-18 07:03:17 +00:00
|
|
|
|
--netcore) FORCE_NETCORE=1; shift;; # NEW: force old mode (no bundle zip)
|
2025-08-15 13:16:09 +00:00
|
|
|
|
*)
|
|
|
|
|
if [[ -z "${VERSION_ARG:-}" ]]; then VERSION_ARG="$1"; fi
|
|
|
|
|
shift;;
|
2025-08-15 09:05:39 +00:00
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Environment check ===============================================================
|
2025-08-15 13:16:09 +00:00
|
|
|
|
arch="$(uname -m)"
|
2025-08-18 01:10:18 +00:00
|
|
|
|
[[ "$arch" == "aarch64" || "$arch" == "x86_64" ]] || { echo "Only supports aarch64 / x86_64"; exit 1; }
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Dependencies (packaging shouldn’t be run as root, but this line needs sudo)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
sudo dnf -y install dotnet-sdk-8.0 rpm-build rpmdevtools curl unzip tar || sudo dnf -y install dotnet-sdk
|
|
|
|
|
command -v curl >/dev/null
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Root directory = the script's location
|
2025-08-15 09:05:39 +00:00
|
|
|
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
cd "$SCRIPT_DIR"
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Git submodules (tolerant)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
if [[ -f .gitmodules ]]; then
|
|
|
|
|
git submodule sync --recursive || true
|
|
|
|
|
git submodule update --init --recursive || true
|
|
|
|
|
fi
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Locate project ================================================================
|
2025-08-15 09:05:39 +00:00
|
|
|
|
PROJECT="v2rayN.Desktop/v2rayN.Desktop.csproj"
|
|
|
|
|
if [[ ! -f "$PROJECT" ]]; then
|
|
|
|
|
PROJECT="$(find . -maxdepth 3 -name 'v2rayN.Desktop.csproj' | head -n1 || true)"
|
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
[[ -f "$PROJECT" ]] || { echo "v2rayN.Desktop.csproj not found"; exit 1; }
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 09:14:46 +00:00
|
|
|
|
# ===== Resolve GUI version & auto checkout ============================================
|
|
|
|
|
# Rules:
|
|
|
|
|
# - If VERSION_ARG provided: try to checkout that tag (vX.Y.Z or X.Y.Z). If not found, ask which channel (Latest vs Pre-release),
|
|
|
|
|
# default to Latest, then fetch the chosen channel's latest tag and checkout.
|
|
|
|
|
# - If VERSION_ARG not provided: ask the channel first (default Latest), then checkout to that tag.
|
|
|
|
|
# - If not a git repo, warn and continue without switching (keep current branch).
|
|
|
|
|
VERSION="" # final GUI version string without 'v' prefix
|
|
|
|
|
|
|
|
|
|
choose_channel() {
|
|
|
|
|
# Print menu to stderr first, then read from stdin; only echo the chosen token to stdout.
|
|
|
|
|
local ch="latest" sel=""
|
|
|
|
|
if [[ -t 0 ]]; then
|
|
|
|
|
>&2 echo "[?] Choose v2rayN release channel:"
|
|
|
|
|
>&2 echo " 1) Latest (stable) [default]"
|
|
|
|
|
>&2 echo " 2) Pre-release (preview)"
|
|
|
|
|
read -r -p "Enter 1 or 2 (default 1): " sel
|
|
|
|
|
case "${sel:-}" in
|
|
|
|
|
2) ch="prerelease" ;;
|
|
|
|
|
*) ch="latest" ;;
|
|
|
|
|
esac
|
|
|
|
|
else
|
|
|
|
|
ch="latest"
|
|
|
|
|
fi
|
|
|
|
|
echo "$ch"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get_latest_tag_latest() {
|
|
|
|
|
# Use GitHub API: /releases/latest → tag_name
|
|
|
|
|
curl -fsSL "https://api.github.com/repos/2dust/v2rayN/releases/latest" \
|
|
|
|
|
| grep -Eo '"tag_name":\s*"v?[^"]+"' \
|
|
|
|
|
| head -n1 \
|
|
|
|
|
| sed -E 's/.*"tag_name":\s*"v?([^"]+)".*/\1/'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get_latest_tag_prerelease() {
|
|
|
|
|
# Use GitHub API: /releases?per_page=20 and pick the newest prerelease=true's tag_name
|
|
|
|
|
local json
|
|
|
|
|
json="$(curl -fsSL "https://api.github.com/repos/2dust/v2rayN/releases?per_page=20")" || return 1
|
|
|
|
|
echo "$json" \
|
|
|
|
|
| awk -v RS='},' '/"prerelease":[[:space:]]*true/ { if (match($0, /"tag_name":[[:space:]]*"v?[^"]+"/, m)) { t=m[0]; sub(/.*"tag_name":[[:space:]]*"?v?/, "", t); sub(/".*/, "", t); print t; exit } }'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
git_try_checkout() {
|
|
|
|
|
# Try a series of refs and checkout when found.
|
|
|
|
|
# Args: version-like string (may contain leading 'v')
|
|
|
|
|
local want="$1" ref=""
|
|
|
|
|
if git rev-parse --git-dir >/dev/null 2>&1; then
|
|
|
|
|
git fetch --tags --force --prune --depth=1 || true
|
|
|
|
|
if git rev-parse "refs/tags/v${want}" >/dev/null 2>&1; then
|
|
|
|
|
ref="v${want}"
|
|
|
|
|
elif git rev-parse "refs/tags/${want}" >/dev/null 2>&1; then
|
|
|
|
|
ref="${want}"
|
|
|
|
|
elif git rev-parse --verify "${want}" >/dev/null 2>&1; then
|
|
|
|
|
ref="${want}"
|
|
|
|
|
fi
|
|
|
|
|
if [[ -n "$ref" ]]; then
|
|
|
|
|
echo "[OK] Found ref '${ref}', checking out..."
|
|
|
|
|
git checkout -f "${ref}"
|
|
|
|
|
if [[ -f .gitmodules ]]; then
|
|
|
|
|
git submodule sync --recursive || true
|
|
|
|
|
git submodule update --init --recursive || true
|
|
|
|
|
fi
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if git rev-parse --git-dir >/dev/null 2>&1; then
|
|
|
|
|
if [[ -n "${VERSION_ARG:-}" ]]; then
|
|
|
|
|
echo "[*] Trying to switch v2rayN repo to version: ${VERSION_ARG}"
|
|
|
|
|
if git_try_checkout "${VERSION_ARG#v}"; then
|
|
|
|
|
VERSION="${VERSION_ARG#v}"
|
|
|
|
|
else
|
|
|
|
|
echo "[WARN] Tag '${VERSION_ARG}' not found."
|
|
|
|
|
ch="$(choose_channel)"
|
|
|
|
|
echo "[*] Resolving ${ch} tag from GitHub releases..."
|
|
|
|
|
tag=""
|
|
|
|
|
if [[ "$ch" == "prerelease" ]]; then
|
|
|
|
|
tag="$(get_latest_tag_prerelease || true)"
|
|
|
|
|
else
|
|
|
|
|
tag="$(get_latest_tag_latest || true)"
|
|
|
|
|
fi
|
|
|
|
|
[[ -n "$tag" ]] || { echo "[ERROR] Failed to resolve latest tag for channel '${ch}'."; exit 1; }
|
|
|
|
|
echo "[*] Latest tag for '${ch}': ${tag}"
|
|
|
|
|
git_try_checkout "$tag" || { echo "[ERROR] Failed to checkout '${tag}'."; exit 1; }
|
|
|
|
|
VERSION="${tag#v}"
|
|
|
|
|
fi
|
2025-08-15 13:16:09 +00:00
|
|
|
|
else
|
2025-08-18 09:14:46 +00:00
|
|
|
|
# No explicit GUI version passed: ask channel first
|
|
|
|
|
ch="$(choose_channel)"
|
|
|
|
|
echo "[*] Resolving ${ch} tag from GitHub releases..."
|
|
|
|
|
tag=""
|
|
|
|
|
if [[ "$ch" == "prerelease" ]]; then
|
|
|
|
|
tag="$(get_latest_tag_prerelease || true)"
|
|
|
|
|
else
|
|
|
|
|
tag="$(get_latest_tag_latest || true)"
|
|
|
|
|
fi
|
|
|
|
|
[[ -n "$tag" ]] || { echo "[ERROR] Failed to resolve latest tag for channel '${ch}'."; exit 1; }
|
|
|
|
|
echo "[*] Latest tag for '${ch}': ${tag}"
|
|
|
|
|
git_try_checkout "$tag" || { echo "[ERROR] Failed to checkout '${tag}'."; exit 1; }
|
|
|
|
|
VERSION="${tag#v}"
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "[WARN] Current directory is not a git repo; cannot checkout version. Proceeding on current tree."
|
|
|
|
|
VERSION="${VERSION_ARG:-}"
|
|
|
|
|
if [[ -z "$VERSION" ]]; then
|
|
|
|
|
if git describe --tags --abbrev=0 >/dev/null 2>&1; then
|
|
|
|
|
VERSION="$(git describe --tags --abbrev=0)"
|
|
|
|
|
else
|
|
|
|
|
VERSION="0.0.0+git"
|
|
|
|
|
fi
|
2025-08-15 13:16:09 +00:00
|
|
|
|
fi
|
2025-08-18 09:14:46 +00:00
|
|
|
|
VERSION="${VERSION#v}"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
fi
|
2025-08-18 09:14:46 +00:00
|
|
|
|
echo "[*] GUI version resolved as: ${VERSION}"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== .NET publish (non-single file, self-contained) ===========================================
|
2025-08-15 13:16:09 +00:00
|
|
|
|
dotnet clean "$PROJECT" -c Release
|
|
|
|
|
rm -rf "$(dirname "$PROJECT")/bin/Release/net8.0" || true
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
|
|
|
|
dotnet restore "$PROJECT"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
dotnet publish "$PROJECT" \
|
|
|
|
|
-c Release -r "$( [[ "$arch" == "aarch64" ]] && echo linux-arm64 || echo linux-x64 )" \
|
|
|
|
|
-p:PublishSingleFile=false \
|
|
|
|
|
-p:SelfContained=true \
|
|
|
|
|
-p:IncludeNativeLibrariesForSelfExtract=true
|
2025-08-15 12:24:27 +00:00
|
|
|
|
|
2025-08-15 13:16:09 +00:00
|
|
|
|
RID_DIR="$( [[ "$arch" == "aarch64" ]] && echo linux-arm64 || echo linux-x64 )"
|
|
|
|
|
PUBDIR="$(dirname "$PROJECT")/bin/Release/net8.0/${RID_DIR}/publish"
|
|
|
|
|
[[ -d "$PUBDIR" ]]
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Download Core(Optional) ========================================================
|
2025-08-15 13:16:09 +00:00
|
|
|
|
download_xray() {
|
|
|
|
|
local outdir="$1" ver="${XRAY_VER:-}" url tmp zipname="xray.zip"
|
|
|
|
|
mkdir -p "$outdir"
|
|
|
|
|
if [[ -z "$ver" ]]; then
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Latest version
|
2025-08-15 13:16:09 +00:00
|
|
|
|
ver="$(curl -fsSL https://api.github.com/repos/XTLS/Xray-core/releases/latest \
|
|
|
|
|
| grep -Eo '"tag_name":\s*"v[^"]+"' | sed -E 's/.*"v([^"]+)".*/\1/' | head -n1)" || true
|
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
[[ -n "$ver" ]] || { echo "[xray] Failed to get version"; return 1; }
|
2025-08-15 12:24:27 +00:00
|
|
|
|
|
2025-08-15 13:16:09 +00:00
|
|
|
|
if [[ "$arch" == "aarch64" ]]; then
|
|
|
|
|
url="https://github.com/XTLS/Xray-core/releases/download/v${ver}/Xray-linux-arm64-v8a.zip"
|
2025-08-15 12:24:27 +00:00
|
|
|
|
else
|
2025-08-15 13:16:09 +00:00
|
|
|
|
url="https://github.com/XTLS/Xray-core/releases/download/v${ver}/Xray-linux-64.zip"
|
2025-08-15 12:24:27 +00:00
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
echo "[+] Download xray: $url"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
tmp="$(mktemp -d)"; trap 'rm -rf "$tmp"' RETURN
|
|
|
|
|
curl -fL "$url" -o "$tmp/$zipname"
|
|
|
|
|
unzip -q "$tmp/$zipname" -d "$tmp"
|
|
|
|
|
install -Dm755 "$tmp/xray" "$outdir/xray"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
}
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
download_singbox() {
|
|
|
|
|
local outdir="$1" ver="${SING_VER:-}" url tmp tarname="singbox.tar.gz" bin
|
|
|
|
|
mkdir -p "$outdir"
|
|
|
|
|
if [[ -z "$ver" ]]; then
|
|
|
|
|
ver="$(curl -fsSL https://api.github.com/repos/SagerNet/sing-box/releases/latest \
|
|
|
|
|
| grep -Eo '"tag_name":\s*"v[^"]+"' | sed -E 's/.*"v([^"]+)".*/\1/' | head -n1)" || true
|
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
[[ -n "$ver" ]] || { echo "[sing-box] Failed to get version"; return 1; }
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
if [[ "$arch" == "aarch64" ]]; then
|
|
|
|
|
url="https://github.com/SagerNet/sing-box/releases/download/v${ver}/sing-box-${ver}-linux-arm64.tar.gz"
|
|
|
|
|
else
|
|
|
|
|
url="https://github.com/SagerNet/sing-box/releases/download/v${ver}/sing-box-${ver}-linux-amd64.tar.gz"
|
|
|
|
|
fi
|
2025-08-18 01:10:18 +00:00
|
|
|
|
echo "[+] Download sing-box: $url"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
tmp="$(mktemp -d)"; trap 'rm -rf "$tmp"' RETURN
|
|
|
|
|
curl -fL "$url" -o "$tmp/$tarname"
|
|
|
|
|
tar -C "$tmp" -xzf "$tmp/$tarname"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
bin="$(find "$tmp" -type f -name 'sing-box' | head -n1 || true)"
|
2025-08-18 01:10:18 +00:00
|
|
|
|
[[ -n "$bin" ]] || { echo "[!] sing-box unpack failed"; return 1; }
|
2025-08-15 13:16:09 +00:00
|
|
|
|
install -Dm755 "$bin" "$outdir/sing-box"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2025-08-18 08:17:13 +00:00
|
|
|
|
# === Geo rule download (ZIP-LIKE LAYOUT for netcore mode) =====================
|
|
|
|
|
# Make netcore output match the ZIP bundle structure:
|
|
|
|
|
# - All geo databases at outroot/bin/ (geosite.dat, geoip.dat, Country.mmdb, geoip-only-cn-private.dat, geoip.metadb)
|
|
|
|
|
# - All *.srs rule-sets at outroot/bin/srss/
|
|
|
|
|
# (Binaries stay under outroot/bin/xray and outroot/bin/sing_box as before.)
|
2025-08-15 13:16:09 +00:00
|
|
|
|
download_geo_assets() {
|
|
|
|
|
local outroot="$1"
|
2025-08-18 08:17:13 +00:00
|
|
|
|
local bin_dir="$outroot/bin"
|
|
|
|
|
local srss_dir="$bin_dir/srss"
|
|
|
|
|
mkdir -p "$bin_dir" "$srss_dir"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-18 08:17:13 +00:00
|
|
|
|
echo "[+] Download Xray Geo (geosite/geoip/...) to ${bin_dir}"
|
|
|
|
|
curl -fsSL -o "$bin_dir/geosite.dat" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://github.com/Loyalsoldier/V2ray-rules-dat/releases/latest/download/geosite.dat"
|
2025-08-18 08:17:13 +00:00
|
|
|
|
curl -fsSL -o "$bin_dir/geoip.dat" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://github.com/Loyalsoldier/V2ray-rules-dat/releases/latest/download/geoip.dat"
|
2025-08-18 08:17:13 +00:00
|
|
|
|
curl -fsSL -o "$bin_dir/geoip-only-cn-private.dat" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://raw.githubusercontent.com/Loyalsoldier/geoip/release/geoip-only-cn-private.dat"
|
2025-08-18 08:17:13 +00:00
|
|
|
|
curl -fsSL -o "$bin_dir/Country.mmdb" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://raw.githubusercontent.com/Loyalsoldier/geoip/release/Country.mmdb"
|
|
|
|
|
|
2025-08-18 08:17:13 +00:00
|
|
|
|
echo "[+] Download sing-box rule DB & rule-sets to ZIP-like paths"
|
|
|
|
|
curl -fsSL -o "$bin_dir/geoip.metadb" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://github.com/MetaCubeX/meta-rules-dat/releases/latest/download/geoip.metadb" || true
|
|
|
|
|
|
|
|
|
|
for f in \
|
|
|
|
|
geoip-private.srs geoip-cn.srs geoip-facebook.srs geoip-fastly.srs \
|
|
|
|
|
geoip-google.srs geoip-netflix.srs geoip-telegram.srs geoip-twitter.srs; do
|
2025-08-18 08:17:13 +00:00
|
|
|
|
curl -fsSL -o "$srss_dir/$f" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://raw.githubusercontent.com/2dust/sing-box-rules/rule-set-geoip/$f" || true
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
for f in \
|
|
|
|
|
geosite-cn.srs geosite-gfw.srs geosite-greatfire.srs \
|
2025-08-18 08:17:13 +00:00
|
|
|
|
geosite-geolocation-cn.srs geosite-category-ads-all.srs geosite-private.srs; do
|
|
|
|
|
curl -fsSL -o "$srss_dir/$f" \
|
2025-08-15 13:16:09 +00:00
|
|
|
|
"https://raw.githubusercontent.com/2dust/sing-box-rules/rule-set-geosite/$f" || true
|
|
|
|
|
done
|
|
|
|
|
}
|
2025-08-15 12:24:27 +00:00
|
|
|
|
|
2025-08-18 07:03:17 +00:00
|
|
|
|
# === NEW: Prefer the all-in-one v2rayN bundle zip first =======================
|
|
|
|
|
download_v2rayn_bundle() {
|
|
|
|
|
local outroot="$1"
|
|
|
|
|
local url=""
|
|
|
|
|
if [[ "$arch" == "aarch64" ]]; then
|
|
|
|
|
url="https://raw.githubusercontent.com/2dust/v2rayN-core-bin/refs/heads/master/v2rayN-linux-arm64.zip"
|
|
|
|
|
else
|
|
|
|
|
url="https://raw.githubusercontent.com/2dust/v2rayN-core-bin/refs/heads/master/v2rayN-linux-64.zip"
|
|
|
|
|
fi
|
|
|
|
|
echo "[+] Try v2rayN bundle archive: $url"
|
|
|
|
|
local tmp zipname
|
|
|
|
|
tmp="$(mktemp -d)"; zipname="$tmp/v2rayn.zip"
|
|
|
|
|
curl -fL "$url" -o "$zipname" || { echo "[!] Bundle download failed"; return 1; }
|
|
|
|
|
unzip -q "$zipname" -d "$tmp" || { echo "[!] Bundle unzip failed"; return 1; }
|
|
|
|
|
|
2025-08-18 07:56:29 +00:00
|
|
|
|
# Normalize layout: copy 'bin/' if present; otherwise copy all
|
2025-08-18 07:03:17 +00:00
|
|
|
|
if [[ -d "$tmp/bin" ]]; then
|
|
|
|
|
mkdir -p "$outroot/bin"
|
|
|
|
|
rsync -a "$tmp/bin/" "$outroot/bin/"
|
|
|
|
|
else
|
|
|
|
|
rsync -a "$tmp/" "$outroot/"
|
|
|
|
|
fi
|
2025-08-18 07:56:29 +00:00
|
|
|
|
|
2025-08-18 08:17:13 +00:00
|
|
|
|
# --- CLEANUPS (keep bundle-only adjustments) -------------------------------
|
2025-08-18 07:56:29 +00:00
|
|
|
|
rm -f "$outroot/v2rayn.zip" 2>/dev/null || true
|
|
|
|
|
find "$outroot" -type d -name "mihomo" -prune -exec rm -rf {} + 2>/dev/null || true
|
|
|
|
|
|
|
|
|
|
local nested_dir
|
|
|
|
|
nested_dir="$(find "$outroot" -maxdepth 1 -type d -name 'v2rayN-linux-*' | head -n1 || true)"
|
|
|
|
|
if [[ -n "${nested_dir:-}" && -d "$nested_dir/bin" ]]; then
|
|
|
|
|
mkdir -p "$outroot/bin"
|
|
|
|
|
rsync -a "$nested_dir/bin/" "$outroot/bin/"
|
|
|
|
|
rm -rf "$nested_dir"
|
|
|
|
|
fi
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
2025-08-18 07:03:17 +00:00
|
|
|
|
echo "[+] Bundle extracted to $outroot"
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Copy publish files to RPM build root ==================================================
|
2025-08-15 09:05:39 +00:00
|
|
|
|
rpmdev-setuptree
|
|
|
|
|
TOPDIR="${HOME}/rpmbuild"
|
|
|
|
|
SPECDIR="${TOPDIR}/SPECS"
|
|
|
|
|
SOURCEDIR="${TOPDIR}/SOURCES"
|
|
|
|
|
|
2025-08-15 13:16:09 +00:00
|
|
|
|
PKGROOT="v2rayN-publish"
|
|
|
|
|
WORKDIR="$(mktemp -d)"
|
|
|
|
|
trap 'rm -rf "$WORKDIR"' EXIT
|
|
|
|
|
|
|
|
|
|
mkdir -p "$WORKDIR/$PKGROOT"
|
|
|
|
|
cp -a "$PUBDIR/." "$WORKDIR/$PKGROOT/"
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# icon(Optional)
|
2025-08-15 13:16:09 +00:00
|
|
|
|
ICON_CANDIDATE="$(dirname "$PROJECT")/../v2rayN.Desktop/v2rayN.png"
|
|
|
|
|
[[ -f "$ICON_CANDIDATE" ]] && cp "$ICON_CANDIDATE" "$WORKDIR/$PKGROOT/v2rayn.png" || true
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# bin directory structure
|
2025-08-15 13:16:09 +00:00
|
|
|
|
mkdir -p "$WORKDIR/$PKGROOT/bin/xray" "$WORKDIR/$PKGROOT/bin/sing_box"
|
|
|
|
|
|
2025-08-18 07:03:17 +00:00
|
|
|
|
# ====== NEW decision: prefer bundle zip unless --netcore, else fall back ======
|
|
|
|
|
if [[ "$FORCE_NETCORE" -eq 0 ]]; then
|
|
|
|
|
if download_v2rayn_bundle "$WORKDIR/$PKGROOT"; then
|
|
|
|
|
echo "[*] Using v2rayN bundle archive."
|
|
|
|
|
else
|
|
|
|
|
echo "[*] Bundle failed, fallback to separate core + rules."
|
|
|
|
|
if [[ "$WITH_CORE" == "xray" || "$WITH_CORE" == "both" ]]; then
|
|
|
|
|
download_xray "$WORKDIR/$PKGROOT/bin/xray" || echo "[!] xray download failed (skipped)"
|
|
|
|
|
fi
|
|
|
|
|
if [[ "$WITH_CORE" == "sing-box" || "$WITH_CORE" == "both" ]]; then
|
|
|
|
|
download_singbox "$WORKDIR/$PKGROOT/bin/sing_box" || echo "[!] sing-box download failed (skipped)"
|
|
|
|
|
fi
|
|
|
|
|
download_geo_assets "$WORKDIR/$PKGROOT" || echo "[!] Geo rules download failed (skipped)"
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "[*] --netcore specified: use separate core + rules."
|
|
|
|
|
if [[ "$WITH_CORE" == "xray" || "$WITH_CORE" == "both" ]]; then
|
|
|
|
|
download_xray "$WORKDIR/$PKGROOT/bin/xray" || echo "[!] xray download failed (skipped)"
|
|
|
|
|
fi
|
|
|
|
|
if [[ "$WITH_CORE" == "sing-box" || "$WITH_CORE" == "both" ]]; then
|
|
|
|
|
download_singbox "$WORKDIR/$PKGROOT/bin/sing_box" || echo "[!] sing-box download failed (skipped)"
|
|
|
|
|
fi
|
|
|
|
|
download_geo_assets "$WORKDIR/$PKGROOT" || echo "[!] Geo rules download failed (skipped)"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
tar -C "$WORKDIR" -czf "$SOURCEDIR/$PKGROOT.tar.gz" "$PKGROOT"
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Generate SPEC (heredoc with placeholders) ===================================
|
2025-08-15 13:16:09 +00:00
|
|
|
|
SPECFILE="$SPECDIR/v2rayN.spec"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
cat > "$SPECFILE" <<'SPEC'
|
|
|
|
|
%global debug_package %{nil}
|
|
|
|
|
%undefine _debuginfo_subpackages
|
|
|
|
|
%undefine _debugsource_packages
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Ignore outdated LTTng dependencies incorrectly reported by the .NET runtime (to avoid installation failures)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
%global __requires_exclude ^liblttng-ust\.so\..*$
|
|
|
|
|
|
|
|
|
|
Name: v2rayN
|
2025-08-15 13:16:09 +00:00
|
|
|
|
Version: __VERSION__
|
2025-08-15 09:05:39 +00:00
|
|
|
|
Release: 1%{?dist}
|
2025-08-15 13:16:09 +00:00
|
|
|
|
Summary: v2rayN (Avalonia) GUI client for Linux (x86_64/aarch64)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
License: GPL-3.0-only
|
|
|
|
|
URL: https://github.com/2dust/v2rayN
|
2025-08-15 12:24:27 +00:00
|
|
|
|
ExclusiveArch: aarch64 x86_64
|
2025-08-15 13:16:09 +00:00
|
|
|
|
Source0: __PKGROOT__.tar.gz
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Runtime dependencies (Avalonia / X11 / Fonts / GL)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
Requires: libX11, libXrandr, libXcursor, libXi, libXext, libxcb, libXrender, libXfixes, libXinerama, libxkbcommon
|
|
|
|
|
Requires: fontconfig, freetype, cairo, pango, mesa-libEGL, mesa-libGL
|
|
|
|
|
|
|
|
|
|
%description
|
2025-08-15 13:16:09 +00:00
|
|
|
|
v2rayN GUI client built with Avalonia.
|
|
|
|
|
Installs self-contained publish under /opt/v2rayN and a launcher 'v2rayn'.
|
|
|
|
|
Cores (if bundled): /opt/v2rayN/bin/xray, /opt/v2rayN/bin/sing_box.
|
|
|
|
|
Geo files for Xray are placed at /opt/v2rayN/bin/xray; launcher will symlink them into user's XDG data dir on first run.
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
|
|
|
|
%prep
|
2025-08-15 13:16:09 +00:00
|
|
|
|
%setup -q -n __PKGROOT__
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
# no build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
install -dm0755 %{buildroot}/opt/v2rayN
|
|
|
|
|
cp -a * %{buildroot}/opt/v2rayN/
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Launcher (prioritize ELF first, then fall back to DLL; also create Geo symlinks for the user)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
install -dm0755 %{buildroot}%{_bindir}
|
|
|
|
|
cat > %{buildroot}%{_bindir}/v2rayn << 'EOF'
|
|
|
|
|
#!/usr/bin/bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
DIR="/opt/v2rayN"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
|
|
|
|
# --- SYMLINK GEO into user's XDG dir (new) ---
|
|
|
|
|
XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
|
|
|
|
|
USR_GEO_DIR="$XDG_DATA_HOME/v2rayN/bin"
|
|
|
|
|
SYS_XRAY_DIR="$DIR/bin/xray"
|
|
|
|
|
mkdir -p "$USR_GEO_DIR"
|
|
|
|
|
for f in geosite.dat geoip.dat geoip-only-cn-private.dat Country.mmdb; do
|
|
|
|
|
if [[ -f "$SYS_XRAY_DIR/$f" && ! -e "$USR_GEO_DIR/$f" ]]; then
|
|
|
|
|
ln -s "$SYS_XRAY_DIR/$f" "$USR_GEO_DIR/$f" || true
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
# --- end GEO ---
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Prefer native ELF(apphost)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
if [[ -x "$DIR/v2rayN" ]]; then exec "$DIR/v2rayN" "$@"; fi
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# DLL fallback (for framework-dependent publish)
|
2025-08-15 09:05:39 +00:00
|
|
|
|
for dll in v2rayN.Desktop.dll v2rayN.dll; do
|
|
|
|
|
if [[ -f "$DIR/$dll" ]]; then exec /usr/bin/dotnet "$DIR/$dll" "$@"; fi
|
|
|
|
|
done
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-15 09:05:39 +00:00
|
|
|
|
echo "v2rayN launcher: no executable found in $DIR" >&2
|
|
|
|
|
ls -l "$DIR" >&2 || true
|
|
|
|
|
exit 1
|
|
|
|
|
EOF
|
|
|
|
|
chmod 0755 %{buildroot}%{_bindir}/v2rayn
|
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Desktop File
|
2025-08-15 09:05:39 +00:00
|
|
|
|
install -dm0755 %{buildroot}%{_datadir}/applications
|
|
|
|
|
cat > %{buildroot}%{_datadir}/applications/v2rayn.desktop << 'EOF'
|
|
|
|
|
[Desktop Entry]
|
|
|
|
|
Type=Application
|
|
|
|
|
Name=v2rayN
|
|
|
|
|
Comment=GUI client for Xray / sing-box
|
|
|
|
|
Exec=v2rayn
|
|
|
|
|
Icon=v2rayn
|
|
|
|
|
Terminal=false
|
|
|
|
|
Categories=Network;
|
|
|
|
|
EOF
|
2025-08-15 13:16:09 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# icon
|
2025-08-15 13:16:09 +00:00
|
|
|
|
if [ -f "%{_builddir}/__PKGROOT__/v2rayn.png" ]; then
|
2025-08-15 09:05:39 +00:00
|
|
|
|
install -dm0755 %{buildroot}%{_datadir}/icons/hicolor/256x256/apps
|
2025-08-15 13:16:09 +00:00
|
|
|
|
install -m0644 %{_builddir}/__PKGROOT__/v2rayn.png %{buildroot}%{_datadir}/icons/hicolor/256x256/apps/v2rayn.png
|
2025-08-15 09:05:39 +00:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
%post
|
2025-08-18 07:03:17 +00:00
|
|
|
|
/usr/bin/update-desktop-database %{_datadir}/applications >/dev/null 2>&1 || true
|
|
|
|
|
/usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor >/dev/null 2>&1 || true
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
|
|
|
|
%postun
|
2025-08-18 07:03:17 +00:00
|
|
|
|
/usr/bin/update-desktop-database %{_datadir}/applications >/dev/null 2>&1 || true
|
|
|
|
|
/usr/bin/gtk-update-icon-cache -f %{_datadir}/icons/hicolor >/dev/null 2>&1 || true
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%{_bindir}/v2rayn
|
|
|
|
|
/opt/v2rayN
|
|
|
|
|
%{_datadir}/applications/v2rayn.desktop
|
|
|
|
|
%{_datadir}/icons/hicolor/256x256/apps/v2rayn.png
|
2025-08-15 13:16:09 +00:00
|
|
|
|
SPEC
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Optional: system-wide autostart (append block, keep original logic unchanged)
|
2025-08-15 13:16:09 +00:00
|
|
|
|
if [[ "$AUTOSTART" -eq 1 ]]; then
|
|
|
|
|
cat >> "$SPECFILE" <<'SPEC'
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# System-wide autostart entry
|
2025-08-15 13:16:09 +00:00
|
|
|
|
%install
|
|
|
|
|
install -dm0755 %{buildroot}/etc/xdg/autostart
|
|
|
|
|
cat > %{buildroot}/etc/xdg/autostart/v2rayn.desktop << 'EOF'
|
|
|
|
|
[Desktop Entry]
|
|
|
|
|
Type=Application
|
|
|
|
|
Name=v2rayN (Autostart)
|
|
|
|
|
Exec=v2rayn
|
|
|
|
|
X-GNOME-Autostart-enabled=true
|
|
|
|
|
NoDisplay=false
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%config(noreplace) /etc/xdg/autostart/v2rayn.desktop
|
2025-08-15 09:05:39 +00:00
|
|
|
|
SPEC
|
2025-08-15 13:16:09 +00:00
|
|
|
|
fi
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# Injecting version/package root placeholders
|
2025-08-15 13:16:09 +00:00
|
|
|
|
sed -i "s/__VERSION__/${VERSION}/g" "$SPECFILE"
|
|
|
|
|
sed -i "s/__PKGROOT__/${PKGROOT}/g" "$SPECFILE"
|
2025-08-15 09:05:39 +00:00
|
|
|
|
|
2025-08-18 01:10:18 +00:00
|
|
|
|
# ===== Build RPM ================================================================
|
2025-08-15 09:05:39 +00:00
|
|
|
|
rpmbuild -ba "$SPECFILE"
|
|
|
|
|
|
|
|
|
|
echo "Build done. RPM at:"
|
2025-08-15 13:16:09 +00:00
|
|
|
|
ls -1 "${TOPDIR}/RPMS/$( [[ "$arch" == "aarch64" ]] && echo aarch64 || echo x86_64 )/v2rayN-${VERSION}-1"*.rpm
|