mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
35 lines
913 B
Ruby
35 lines
913 B
Ruby
require 'package'
|
|
|
|
class Upscayl < Package
|
|
description 'Free and Open Source AI Image Upscaler'
|
|
homepage 'https://upscayl.org/'
|
|
version '2.11.5'
|
|
license 'AGPL-3.0'
|
|
compatibility 'x86_64'
|
|
source_url "https://github.com/upscayl/upscayl/releases/download/v#{version}/upscayl-#{version}-linux.AppImage"
|
|
source_sha256 'a30c529bcb7bac7339cb024fa7cb09439680c8d2a0adbc8963aa85a7bf3f5213'
|
|
|
|
depends_on 'gtk3'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.build
|
|
File.write 'upscayl.sh', <<~EOF
|
|
#!/bin/bash
|
|
cd #{CREW_PREFIX}/share/upscayl
|
|
./AppRun "$@"
|
|
EOF
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/upscayl"
|
|
FileUtils.install 'upscayl.sh', "#{CREW_DEST_PREFIX}/bin/upscayl", mode: 0o755
|
|
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/share/upscayl"
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'upscayl' to get started.\n"
|
|
end
|
|
end
|