mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Adjust gnu sources to not use ftpmirror. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * ed => 1.22.5 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * gnu_avoid_ftpmirror: Package File Update Run on linux/386 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/amd64 container. * gnu_avoid_ftpmirror: Package File Update Run on linux/arm/v7 container. * Truncate PR Title length as per GitHub requirements. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust gnuastro compatibility. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
30 lines
1.2 KiB
Ruby
30 lines
1.2 KiB
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://ftp.gnu.org/gnu/alive/alive-#{version}.tar.lz"
|
|
source_sha256 '94cf3dbffd9644405ed4944f94a7bb989674321607318c5a35d5fabc56a75089'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8f87960381b9cc6d6697335fbdb8cf0fe9cdae6417c999c8dc81ab08e2b4e8ef',
|
|
armv7l: '8f87960381b9cc6d6697335fbdb8cf0fe9cdae6417c999c8dc81ab08e2b4e8ef',
|
|
i686: 'f5dc5db28371fedad458ee263c1cdc24b360ff9a7a42f3c1573da5f6c3516d68',
|
|
x86_64: '8ce43c4c5beaeef494a7fc48db0b6a4458f732243723ab0876f5e3b9b795a7d1'
|
|
})
|
|
|
|
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
|