mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
29 lines
941 B
Ruby
29 lines
941 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Bzip3 < CMake
|
|
description 'bzip3 is a better and stronger spiritual successor to bzip2.'
|
|
homepage 'https://github.com/kspalaiologos/bzip3'
|
|
version '1.3.2'
|
|
license 'LGPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/kspalaiologos/bzip3.git'
|
|
git_hashtag version
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'be209e1db7a1796e8d9c579dcb9333ff3a6ebcdfac952a5988fca6861c2e24bb',
|
|
armv7l: 'be209e1db7a1796e8d9c579dcb9333ff3a6ebcdfac952a5988fca6861c2e24bb',
|
|
i686: '3b8b55a9f2922d151bc78a9632fd90e2aa68bc3a38caed04062ed2c651629f47',
|
|
x86_64: '44c65bda8559e0cb0682173058f22f87f3be44a8d9d3ac2e9fbc90e89b06dd0c'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
|
|
def self.patch
|
|
# Replace /bin/sh shebangs with /usr/bin/env sh ones
|
|
%w[bz3cat bz3grep bz3less bz3more bunzip3].each do |file|
|
|
system "sed -i 's:^#!/bin/sh:#!/usr/bin/env sh:' #{file}"
|
|
end
|
|
end
|
|
end
|