mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
require 'package'
|
|
|
|
class Monero_gui < Package
|
|
description 'Private, decentralized cryptocurrency that keeps your finances confidential and secure.'
|
|
homepage 'https://www.getmonero.org/'
|
|
version '0.18.3.4'
|
|
license 'The Cryptonote developers,The Boolberry developers,MIT'
|
|
compatibility 'x86_64'
|
|
source_url "https://downloads.getmonero.org/gui/monero-gui-linux-x64-v#{version}.tar.bz2"
|
|
source_sha256 '2866f3a2be30e4c4113e6274cad1d6698f81c37ceebc6e8f084c57230a0f70a6'
|
|
|
|
depends_on 'monero'
|
|
depends_on 'xcb_util_image'
|
|
depends_on 'xcb_util_keysyms'
|
|
depends_on 'xcb_util_renderutil'
|
|
depends_on 'xcb_util_wm'
|
|
depends_on 'sommelier'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.build
|
|
File.write 'monero.sh', <<~EOF
|
|
#!/bin/bash
|
|
GDK_BACKEND=x11 #{CREW_PREFIX}/bin/monero-wallet-gui "$@"
|
|
EOF
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/monero"
|
|
FileUtils.mv 'monero-wallet-gui', "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.install 'monero.sh', "#{CREW_DEST_PREFIX}/bin/monero", mode: 0o755
|
|
FileUtils.mv 'monero-gui-wallet-guide.pdf', "#{CREW_DEST_PREFIX}/share/monero"
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add <<~EOF
|
|
|
|
Type 'monero' to get started.
|
|
To view the user guide, execute the following:
|
|
crew install zathura && zathura #{CREW_PREFIX}/share/monero/monero-gui-wallet-guide.pdf
|
|
EOF
|
|
end
|
|
end
|