mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
Add tssh package (#13230)
* Add tssh package * Add binaries and filelists --------- Co-authored-by: Ed Reel <edreel@gmail.com>
This commit is contained in:
2
manifest/armv7l/t/tssh.filelist
Normal file
2
manifest/armv7l/t/tssh.filelist
Normal file
@@ -0,0 +1,2 @@
|
||||
# Total size: 14642992
|
||||
/usr/local/bin/tssh
|
||||
2
manifest/i686/t/tssh.filelist
Normal file
2
manifest/i686/t/tssh.filelist
Normal file
@@ -0,0 +1,2 @@
|
||||
# Total size: 14727312
|
||||
/usr/local/bin/tssh
|
||||
2
manifest/x86_64/t/tssh.filelist
Normal file
2
manifest/x86_64/t/tssh.filelist
Normal file
@@ -0,0 +1,2 @@
|
||||
# Total size: 16535844
|
||||
/usr/local/bin/tssh
|
||||
26
packages/tssh.rb
Normal file
26
packages/tssh.rb
Normal file
@@ -0,0 +1,26 @@
|
||||
require 'package'
|
||||
|
||||
class Tssh < Package
|
||||
description 'Alternative ssh client with additional features.'
|
||||
homepage 'https://trzsz.github.io/ssh'
|
||||
version '0.1.23'
|
||||
license 'MIT'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/trzsz/trzsz-ssh.git'
|
||||
git_hashtag "v#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: 'f197490536feab3eda8219bcd31ee26c961c091ba26ee34a091f8e23eac16cbb',
|
||||
armv7l: 'f197490536feab3eda8219bcd31ee26c961c091ba26ee34a091f8e23eac16cbb',
|
||||
i686: '0613c398ef5a1790942c6508a45bc8bb31ac0f3c488e14201521fee22d3ec915',
|
||||
x86_64: '1aa6ef20c85dc24b10360380f2eef5acc0b3ac8514ecb9f6de9c8a486604e288'
|
||||
})
|
||||
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'go' => :build
|
||||
|
||||
def self.install
|
||||
system "go build -ldflags '-s -w' -o #{CREW_DEST_PREFIX}/bin/tssh ./cmd/tssh"
|
||||
end
|
||||
end
|
||||
@@ -9515,6 +9515,11 @@ url: https://sourceforge.net/projects/trousers/files/trousers/
|
||||
activity: none
|
||||
---
|
||||
kind: url
|
||||
name: tssh
|
||||
url: https://github.com/trzsz/trzsz-ssh/releases
|
||||
activity: low
|
||||
---
|
||||
kind: url
|
||||
name: ttf2pt1
|
||||
url: https://sourceforge.net/projects/ttf2pt1/files/ttf2pt1/
|
||||
activity: none
|
||||
|
||||
Reference in New Issue
Block a user