Files
chromebrew/packages/v2ray.rb
2024-06-08 16:18:44 +10:00

41 lines
1.6 KiB
Ruby

require 'package'
class V2ray < Package
description 'A platform for building proxies to bypass network restrictions.'
homepage 'www.v2fly.org'
version 'v5.16.1'
license 'MIT'
compatibility 'all'
source_url({
aarch64: "https://github.com/v2fly/v2ray-core/releases/download/#{version}/v2ray-linux-arm32-v7a.zip",
armv7l: "https://github.com/v2fly/v2ray-core/releases/download/#{version}/v2ray-linux-arm32-v7a.zip",
i686: "https://github.com/v2fly/v2ray-core/releases/download/#{version}/v2ray-linux-32.zip",
x86_64: "https://github.com/v2fly/v2ray-core/releases/download/#{version}/v2ray-linux-64.zip"
})
source_sha256({
aarch64: '7d3380b9080abc42dae5efa37a15413f4df2b6b645a992c5046d7d53a16ab876',
armv7l: '7d3380b9080abc42dae5efa37a15413f4df2b6b645a992c5046d7d53a16ab876',
i686: 'efbe54462b11f27343da1a2585cc762944180b524f8f31d911b0e6bdc0cd33a8',
x86_64: '82a7bf0b37ce2fda36d9e0040d71a494170026841735e20d708717b99ca0fe9b'
})
no_compile_needed
def self.install
FileUtils.mkdir_p %W[#{CREW_DEST_PREFIX}/bin #{CREW_DEST_PREFIX}/etc/v2ray #{CREW_DEST_PREFIX}/share/v2ray]
FileUtils.chmod 0o755, 'v2ray'
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/share/v2ray"
FileUtils.ln_s "#{CREW_PREFIX}/share/v2ray/v2ray", "#{CREW_DEST_PREFIX}/bin/v2ray"
FileUtils.ln_s "#{CREW_PREFIX}/share/v2ray/config.json", "#{CREW_DEST_PREFIX}/etc/v2ray/config.json"
end
def self.postinstall
ExitMessage.add <<~EOT.lightblue
To start using v2ray, type `v2ray`.
For more information, see https://www.v2fly.org/en_US/guide/start.html#novice-guide?
EOT
end
end