Commit b1d433b7 authored by Ed Reel's avatar Ed Reel Committed by GitHub

Update libarchive from 3.4.2 to 3.4.3 (#4446)

parent e56b5e24
......@@ -3,35 +3,33 @@ require 'package'
class Libarchive < Package
description 'Multi-format archive and compression library.'
homepage 'https://www.libarchive.org/'
version '3.4.2'
version '3.4.3'
compatibility 'all'
source_url 'https://www.libarchive.org/downloads/libarchive-3.4.2.tar.gz'
source_sha256 'b60d58d12632ecf1e8fad7316dc82c6b9738a35625746b47ecdcaf4aed176176'
source_url 'https://www.libarchive.org/downloads/libarchive-3.4.3.tar.xz'
source_sha256 '0bfc3fd40491768a88af8d9b86bf04a9e95b6d41a94f9292dbc0ec342288c05f'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.2-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.2-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.2-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.2-chromeos-x86_64.tar.xz',
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.3-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.3-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.3-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/libarchive-3.4.3-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: 'd84d0e6a0a8223863a24f0357a1a21a1eed520e7115fa377267d555de18e3190',
armv7l: 'd84d0e6a0a8223863a24f0357a1a21a1eed520e7115fa377267d555de18e3190',
i686: 'b650a66234e47f1cf4e5970c483cd4cebaed61ed6a177e45ad0480b61eb50811',
x86_64: 'd8131fdd7605773a1f3955b2e9bc1649d67d00a1c034355f8561fb0cbb1bfe7c',
aarch64: 'd655aeae8c2c016a7f519bac200b8f8c646f438de69867c2e50e2cd25282423b',
armv7l: 'd655aeae8c2c016a7f519bac200b8f8c646f438de69867c2e50e2cd25282423b',
i686: 'ca338f3a39b21c2d29ad361b0f97ade39d2396fa3c911be3edf7525b0948cd65',
x86_64: 'adad9cf581d9dc117e24f799fb9cbaa845c9eb60b688a947bd83d22747cc56fa',
})
depends_on 'lz4'
depends_on 'xzutils' => :build
def self.build
system "./configure \
--prefix=#{CREW_PREFIX} \
--libdir=#{CREW_LIB_PREFIX}"
system "make"
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment