mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04: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)
24 lines
889 B
Ruby
24 lines
889 B
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Alive < Autotools
|
|
description 'Automatic login and keep-alive utility for Internet connections.'
|
|
homepage 'https://www.gnu.org/software/alive/'
|
|
version '2.0.5'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://ftpmirror.gnu.org/alive/alive-2.0.5.tar.lz'
|
|
source_sha256 '94cf3dbffd9644405ed4944f94a7bb989674321607318c5a35d5fabc56a75089'
|
|
|
|
binary_sha256({})
|
|
|
|
depends_on 'guile' # R
|
|
depends_on 'inetutils' # L
|
|
|
|
def self.preflight
|
|
puts 'You need to be in the VT-2 shell for the install of alive to work.'.lightblue
|
|
puts 'Make sure you have used Ctrl-Alt-{F2/Right arrow/Refresh} to switch to VT-2.'.lightblue
|
|
puts "Then login as 'chronos' and install alive with 'crew install alive'.".lightblue
|
|
puts 'You can then switch back to your regular Chromeos windows with Ctrl-Alt-{F1/Left arrow}.'.lightblue
|
|
end
|
|
end
|