mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
42 lines
1.6 KiB
Ruby
42 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 '5.41.0'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
|
|
source_url({
|
|
aarch64: "https://github.com/v2fly/v2ray-core/releases/download/v#{version}/v2ray-linux-arm32-v7a.zip",
|
|
armv7l: "https://github.com/v2fly/v2ray-core/releases/download/v#{version}/v2ray-linux-arm32-v7a.zip",
|
|
i686: "https://github.com/v2fly/v2ray-core/releases/download/v#{version}/v2ray-linux-32.zip",
|
|
x86_64: "https://github.com/v2fly/v2ray-core/releases/download/v#{version}/v2ray-linux-64.zip"
|
|
})
|
|
source_sha256({
|
|
aarch64: 'f2d1f3bd37f1ce7dc58a0af7acb1cbbd31425121f92cc1a2f7181e587f79ada9',
|
|
armv7l: 'f2d1f3bd37f1ce7dc58a0af7acb1cbbd31425121f92cc1a2f7181e587f79ada9',
|
|
i686: '37794dbcb11c9a59b856f6f80833404f66fca3088604e0af96471ec7d9dbff22',
|
|
x86_64: '843c69352e989c492fe4b864cae8598adba0ef0daf104452fc200a5d1950f388'
|
|
})
|
|
|
|
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
|
|
|
|
To start using v2ray, type `v2ray`.
|
|
|
|
For more information, see https://www.v2fly.org/en_US/guide/start.html#novice-guide?
|
|
EOT
|
|
end
|
|
end
|