Files
chromebrew/packages/tabby.rb
2025-11-20 02:40:49 +00:00

35 lines
1.3 KiB
Ruby

require 'package'
class Tabby < Package
description 'Tabby is an infinitely customizable cross-platform terminal app for local shells, serial, SSH and Telnet connections.'
homepage 'https://tabby.sh/'
version '1.0.229'
license 'MIT'
compatibility 'aarch64 armv7l x86_64'
source_url({
aarch64: "https://github.com/Eugeny/tabby/releases/download/v#{version}/tabby-#{version}-linux-armv7l.tar.gz",
armv7l: "https://github.com/Eugeny/tabby/releases/download/v#{version}/tabby-#{version}-linux-armv7l.tar.gz",
x86_64: "https://github.com/Eugeny/tabby/releases/download/v#{version}/tabby-#{version}-linux-x64.tar.gz"
})
source_sha256({
aarch64: 'cc9b483c91254381de461102c1598ec6a45aa25fafebf193c4e9c73b90c56386',
armv7l: 'cc9b483c91254381de461102c1598ec6a45aa25fafebf193c4e9c73b90c56386',
x86_64: '7c6cedb85b0a25fc5831fdc893c78dd05f783b69486b8ca3b31a8c5088f25bfb'
})
depends_on 'alsa_lib' # R
depends_on 'at_spi2_core' # R
depends_on 'gtk3' # R
depends_on 'nss' # R
no_compile_needed
no_shrink
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/tabby"
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/share/tabby"
FileUtils.ln_s "#{CREW_PREFIX}/share/tabby/tabby", "#{CREW_DEST_PREFIX}/bin/tabby"
end
end