mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
48 lines
1.9 KiB
Ruby
48 lines
1.9 KiB
Ruby
require 'package'
|
|
|
|
class Peazip < Package
|
|
description 'Free file archiver utility to open and extract RAR, TAR and ZIP archives'
|
|
homepage 'https://peazip.github.io/'
|
|
version ARCH.eql?('x86_64') ? '10.4.0' : '5.2.0'
|
|
license 'LGPL-3'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
min_glibc '2.34' if ARCH.eql?('x86_64')
|
|
source_url({
|
|
aarch64: 'https://downloads.sourceforge.net/project/peazip/5.2.0/pea-gtk2-arm.tar.gz',
|
|
armv7l: 'https://downloads.sourceforge.net/project/peazip/5.2.0/pea-gtk2-arm.tar.gz',
|
|
x86_64: "https://github.com/peazip/PeaZip/releases/download/#{version}/peazip_portable-#{version}.LINUX.GTK2.x86_64.tar.gz"
|
|
})
|
|
source_sha256({
|
|
aarch64: '6724a5c4e273f086680ac30440a2014b647322d25ed9bba574b7b8edba61abcc',
|
|
armv7l: '6724a5c4e273f086680ac30440a2014b647322d25ed9bba574b7b8edba61abcc',
|
|
x86_64: 'bd638a1f7f7cd7127dd181562d5b0c0463994f890576e9c409edb5b3e2760fa8'
|
|
})
|
|
|
|
depends_on 'gtk2'
|
|
depends_on 'sommelier'
|
|
|
|
no_compile_needed
|
|
no_shrink
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/peazip"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/application"
|
|
case ARCH
|
|
when 'aarch64', 'armv7l'
|
|
FileUtils.mv 'FreeDesktop_integration/peazip.desktop', "#{CREW_DEST_PREFIX}/share/application/"
|
|
when 'x86_64'
|
|
FileUtils.mv 'pea', "#{CREW_DEST_PREFIX}/share/peazip/"
|
|
FileUtils.cp 'res/share/batch/freedesktop_integration/peazip.desktop', "#{CREW_DEST_PREFIX}/share/application/"
|
|
FileUtils.ln_s "#{CREW_PREFIX}/share/peazip/pea", "#{CREW_DEST_PREFIX}/bin/pea"
|
|
end
|
|
FileUtils.mv 'peazip', "#{CREW_DEST_PREFIX}/share/peazip/"
|
|
FileUtils.mv 'res/', "#{CREW_DEST_PREFIX}/share/peazip/"
|
|
FileUtils.ln_s "#{CREW_PREFIX}/share/peazip/peazip", "#{CREW_DEST_PREFIX}/bin/peazip"
|
|
end
|
|
|
|
def self.postinstall
|
|
ExitMessage.add "\nType 'peazip' to get started.\n"
|
|
end
|
|
end
|