mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
require 'package'
|
|
|
|
class Thorium < Package
|
|
description 'The fastest browser on Earth.'
|
|
homepage 'https://thorium.rocks/'
|
|
version '130.0.6723.174'
|
|
license 'BSD-3 Clause'
|
|
compatibility 'x86_64'
|
|
min_glibc '2.29'
|
|
source_url "https://github.com/Alex313031/thorium/releases/download/M#{version}/Thorium_Browser_#{version}_SSE4.AppImage"
|
|
source_sha256 'bf918672efdb2c931cd9fe14724727f80ae09e72cbfe3ad3fb4d62c3fd74e626'
|
|
|
|
depends_on 'ffmpeg'
|
|
depends_on 'gtk3'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
print_source_bashrc
|
|
|
|
def self.build
|
|
@thoriumenv = <<~EOF
|
|
# Thorium environment settings
|
|
GDK_BACKEND=x11
|
|
LD_LIBRARY_PATH=#{CREW_PREFIX}/share/thorium/usr/lib:$LD_LIBRARY_PATH
|
|
EOF
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/bash.d"
|
|
FileUtils.cp_r 'usr/share', CREW_DEST_PREFIX
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/thorium"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/applications"
|
|
FileUtils.mv 'thorium-browser.desktop', "#{CREW_DEST_PREFIX}/share/applications"
|
|
FileUtils.ln_s "#{CREW_PREFIX}/share/thorium/usr/bin/thorium", "#{CREW_DEST_PREFIX}/bin/thorium"
|
|
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/share/thorium"
|
|
File.write "#{CREW_DEST_PREFIX}/etc/bash.d/10-thorium", @thoriumenv
|
|
end
|
|
|
|
def self.postinstall
|
|
ConvenienceFunctions.set_default_browser('Thorium', 'thorium')
|
|
ExitMessage.add "\nType 'thorium' to get started.\n"
|
|
end
|
|
|
|
def self.preremove
|
|
ConvenienceFunctions.unset_default_browser('Thorium', 'usr/bin/thorium')
|
|
end
|
|
end
|