mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
require 'package'
|
|
|
|
class Bitcoin_core < Package
|
|
description 'Bitcoin Core is a full Bitcoin client and builds the backbone of the network.'
|
|
homepage 'https://bitcoincore.org/'
|
|
version '29.0'
|
|
license 'MIT'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url({
|
|
aarch64: "https://bitcoincore.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-arm-linux-gnueabihf.tar.gz",
|
|
armv7l: "https://bitcoincore.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-arm-linux-gnueabihf.tar.gz",
|
|
x86_64: "https://bitcoincore.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-x86_64-linux-gnu.tar.gz"
|
|
})
|
|
source_sha256({
|
|
aarch64: 'ea8ca24ab56d486a55289c43cb4256f9f0e66224899cc43482c9498a3f2614d1',
|
|
armv7l: 'ea8ca24ab56d486a55289c43cb4256f9f0e66224899cc43482c9498a3f2614d1',
|
|
x86_64: 'a681e4f6ce524c338a105f214613605bac6c33d58c31dc5135bbc02bc458bb6c'
|
|
})
|
|
|
|
no_compile_needed
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc"
|
|
FileUtils.mv 'bin/', CREW_DEST_PREFIX
|
|
FileUtils.mv 'share/', CREW_DEST_PREFIX
|
|
FileUtils.mv 'bitcoin.conf', "#{CREW_DEST_PREFIX}/etc"
|
|
end
|
|
end
|