mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module systemd
|
|
|
|
DESCRIPTION="Xray, Penetrates Everything. Also the best v2ray-core, with XTLS support."
|
|
HOMEPAGE="https://xtls.github.io/ https://github.com/XTLS/Xray-core"
|
|
SRC_URI="https://github.com/XTLS/Xray-core/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
https://github.com/gentoo-zh/gentoo-deps/releases/download/${P}/${P}-vendor.tar.xz"
|
|
|
|
S="${WORKDIR}/${PN}-core-${PV}"
|
|
|
|
LICENSE="MPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
|
|
|
|
DEPEND="app-alternatives/v2ray-geoip
|
|
app-alternatives/v2ray-geosite"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=">=dev-lang/go-1.24"
|
|
|
|
src_compile() {
|
|
ego build -o xray -trimpath -ldflags "-w -s -X 'github.com/XTLS/Xray-core/core.build=${PV}'" ./main
|
|
}
|
|
|
|
src_install() {
|
|
dobin xray
|
|
newinitd "${FILESDIR}/xray.initd" xray
|
|
systemd_dounit "${FILESDIR}/xray.service"
|
|
systemd_newunit "${FILESDIR}/xray_at.service" xray@.service
|
|
dosym -r /usr/share/v2ray/geosite.dat /usr/share/xray/geosite.dat
|
|
dosym -r /usr/share/v2ray/geoip.dat /usr/share/xray/geoip.dat
|
|
keepdir /etc/xray
|
|
}
|