Files
chromebrew/packages/tauri_cli.rb
github-actions[bot] 2bd2fd1430 Tauri_cli 2.2.5 => 2.2.7 (#11201)
Co-authored-by: Ed Reel <edreel@gmail.com>
2025-01-27 10:36:57 +00:00

23 lines
708 B
Ruby

require 'package'
class Tauri_cli < Package
description 'Build smaller, faster, and more secure desktop and mobile applications with a web frontend.'
homepage 'https://tauri.app/'
version '2.2.7'
license 'Apache-2.0, MIT'
compatibility 'x86_64'
min_glibc '2.29'
source_url "https://github.com/tauri-apps/tauri/releases/download/tauri-cli-v#{version}/cargo-tauri-x86_64-unknown-linux-gnu.tgz"
source_sha256 'eda58cf14bf21e02186bddb31f51a4caa8b437f972742e3186fb8ee34012fb38'
no_compile_needed
def self.install
FileUtils.install 'cargo-tauri', "#{CREW_DEST_PREFIX}/bin/tauri", mode: 0o755
end
def self.postinstall
ExitMessage.add "\nType 'tauri' to get started.\n"
end
end