mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
41 lines
1.5 KiB
Ruby
41 lines
1.5 KiB
Ruby
require 'package'
|
|
|
|
class Dropbox_uploader < Package
|
|
description 'Dropbox Uploader is a BASH script which can be used to upload, download, list or delete files from Dropbox, an online file sharing, synchronization and backup service.'
|
|
homepage 'https://github.com/andreafabrizi/Dropbox-Uploader'
|
|
version '1.0'
|
|
compatibility 'all'
|
|
license 'GPL-3'
|
|
source_url 'https://github.com/andreafabrizi/Dropbox-Uploader/archive/1.0.tar.gz'
|
|
source_sha256 '8c9be8bd38fb3b0f0b4d1a863132ad38c8299ac62ecfbd1e818addf32b48d84c'
|
|
binary_compression 'tar.xz'
|
|
|
|
binary_sha256({
|
|
aarch64: '1a69021e4219a9dca4b90e3b5f1a6b6b31b426f6c64e359148c1c0f7a376e260',
|
|
armv7l: '1a69021e4219a9dca4b90e3b5f1a6b6b31b426f6c64e359148c1c0f7a376e260',
|
|
i686: '8d2c53ab15a7ce7d6bff02c8409f26b5b07b81f425bfe59170ee9d76d59ef49a',
|
|
x86_64: 'de141ac2bbc1a53d30776f5a280af3733222a92ca09465f13ea5b9d6000b2731'
|
|
})
|
|
|
|
depends_on 'curl'
|
|
|
|
def self.install
|
|
system "sed -i 's,dropbox_uploader.sh,dropbox_uploader,g' dropShell.sh"
|
|
|
|
FileUtils.chmod 0o755, %w[dropShell.sh dropbox_uploader.sh]
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
|
|
FileUtils.mv 'dropShell.sh', "#{CREW_DEST_PREFIX}/bin/dropshell"
|
|
FileUtils.mv 'dropbox_uploader.sh', "#{CREW_DEST_PREFIX}/bin/dropbox_uploader"
|
|
end
|
|
|
|
def self.postinstall
|
|
puts <<~EOT.lightblue
|
|
|
|
Type 'dropbox_uploader' and follow the instructions to finish the installation.
|
|
To execute The Interactive Dropbox SHELL, type 'dropshell'.
|
|
|
|
EOT
|
|
end
|
|
end
|