Files
chromebrew/packages/pkg_7_zip.rb
chromebrew-actions[bot] 242b4a1c08 AutoBuild: 7z started at 2025-07-14-12UTC. (#12189)
* 7z => 25.00

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add built packages for linux/386 to branch 7z.

* Add built packages for linux/amd64 to branch 7z.

* Add built packages for linux/arm/v7 to branch 7z.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-07-14 14:02:51 +00:00

65 lines
1.9 KiB
Ruby

require 'package'
class Pkg_7_zip < Package
description 'Official implantation of 7za.exe in Linux. File archiver with a high compression ratio.'
homepage 'https://www.7-zip.org'
license 'LGPL-2.1+'
version '25.00'
compatibility 'all'
source_url "https://www.7-zip.org/a/7z#{version.delete('.')}-src.tar.xz"
source_sha256 'bff9e69b6ca73a5b8715d7623870a39dc90ad6ce1f4d1070685843987af1af9b'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '07d1e47a4f3dbbbbe10dc697d6bbc13cf107415ecee634b131a041514c28ae7e',
armv7l: '07d1e47a4f3dbbbbe10dc697d6bbc13cf107415ecee634b131a041514c28ae7e',
i686: '4aad8fbed7a784b8326de7611de1931d1a23e9b6a0d0fbec7bc7464f63a9c1a3',
x86_64: '2f598746525cbadbb77d580d7606e92c0d8c31dc6386853dff66aaab20d5acbe'
})
no_env_options
depends_on 'asmc' => :build
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
@_makefile = case ARCH
when 'x86_64'
'cmpl_gcc_x64.mak'
when 'i686'
'cmpl_gcc_x86.mak'
else
'cmpl_gcc_arm.mak'
end
@_bundles = {
'Alone2' => "#{CREW_DEST_PREFIX}/bin/7zz",
'Format7zF' => "#{CREW_DEST_LIB_PREFIX}/7z.so"
}
@_bundle_dir = 'CPP/7zip/Bundles'
def self.patch
system "sed -i 's#b/g_$(PLATFORM)#builddir#g' CPP/7zip/var_gcc*.mak"
end
def self.build
@_bundles.each_pair do |bundle, _bin_dest|
system 'make', '-f', "../../#{@_makefile}", chdir: "#{@_bundle_dir}/#{bundle}"
end
end
def self.install
FileUtils.mkdir_p ["#{CREW_DEST_PREFIX}/bin", CREW_DEST_LIB_PREFIX]
@_bundles.each_pair do |bundle, bin_dest|
bin = File.basename(bin_dest)
FileUtils.install "#{@_bundle_dir}/#{bundle}/builddir/#{bin}", bin_dest
end
FileUtils.ln_s '7zz', "#{CREW_DEST_PREFIX}/bin/7z"
FileUtils.ln_s '7zz', "#{CREW_DEST_PREFIX}/bin/7za"
FileUtils.ln_s '7zz', "#{CREW_DEST_PREFIX}/bin/7zr"
end
end