mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add rio package * Add built packages for linux/amd64 to add-rio-package --------- Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: uberhacker <uberhacker@users.noreply.github.com>
35 lines
910 B
Ruby
35 lines
910 B
Ruby
require 'package'
|
|
|
|
class Rio < Package
|
|
description 'A hardware-accelerated GPU terminal emulator focusing to run in desktops and browsers.'
|
|
homepage 'https://raphamorim.io/rio'
|
|
version '0.2.5'
|
|
license 'MIT'
|
|
compatibility 'x86_64'
|
|
source_url 'https://github.com/raphamorim/rio.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
x86_64: '062767dc16bd3a5c54aa9a38e262894ff935d99bbe6292c81b6e17735ae9ae4a'
|
|
})
|
|
|
|
depends_on 'rust' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'wayland' # R
|
|
depends_on 'sommelier' # R
|
|
|
|
def self.build
|
|
system 'cargo build -p rioterm --release --no-default-features --features=x11,wayland'
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.install 'target/release/rio', "#{CREW_DEST_PREFIX}/bin/rio", mode: 0o755
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'rio' to get started.\n"
|
|
end
|
|
end
|