mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
36 lines
1.2 KiB
Ruby
36 lines
1.2 KiB
Ruby
require 'package'
|
|
|
|
class Monero < Package
|
|
description 'Private, decentralized cryptocurrency that keeps your finances confidential and secure.'
|
|
homepage 'https://www.getmonero.org/'
|
|
version '0.18.4.4'
|
|
license 'The Cryptonote developers,The Boolberry developers,MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
min_glibc '2.27'
|
|
|
|
source_url({
|
|
aarch64: "https://downloads.getmonero.org/cli/monero-linux-armv7-v#{version}.tar.bz2",
|
|
armv7l: "https://downloads.getmonero.org/cli/monero-linux-armv7-v#{version}.tar.bz2",
|
|
x86_64: "https://downloads.getmonero.org/cli/monero-linux-x64-v#{version}.tar.bz2"
|
|
})
|
|
source_sha256({
|
|
aarch64: '2040dc22748ef39ed8a755324d2515261b65315c67b91f449fa1617c5978910b',
|
|
armv7l: '2040dc22748ef39ed8a755324d2515261b65315c67b91f449fa1617c5978910b',
|
|
x86_64: '7fe45ee9aade429ccdcfcad93b905ba45da5d3b46d2dc8c6d5afc48bd9e7f108'
|
|
})
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/monero"
|
|
FileUtils.mv Dir['monero*'], "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mv 'LICENSE', "#{CREW_DEST_PREFIX}/share/monero"
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'monero-wallet-cli' to get started.\n"
|
|
end
|
|
end
|