Files
chromebrew/packages/libeconf.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

23 lines
860 B
Ruby

require 'buildsystems/meson'
class Libeconf < Meson
description 'Enhanced config file parser, which merges config files placed in several locations into one.'
homepage 'https://github.com/openSUSE/libeconf'
version '0.5.2'
license 'MIT'
compatibility 'all'
source_url 'https://github.com/openSUSE/libeconf/archive/v0.5.2.tar.gz'
source_sha256 'c9aa04b7ef1c7312a6e045184d15465db1985abb4058cc4c562fd33c9876bb34'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'cf90019b34a1b8c577934a6a0e9a5c19f9a464c0384b8370a45810d466dd90d3',
armv7l: 'cf90019b34a1b8c577934a6a0e9a5c19f9a464c0384b8370a45810d466dd90d3',
i686: 'b838ed7b8184cb357ef6866ae0b144b8289bb6004c8921e1dc03a6c3bc931a08',
x86_64: '04e050e45547fbde8fb42303748d67d4ca0e15bd911f2326241445ff20f3b17e'
})
depends_on 'glibc' # R
depends_on 'gcc_lib' # R
end