mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* util_linux => 2.41.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libeconf Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add i686 builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add arm binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
787 B
Ruby
23 lines
787 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.7.9'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/openSUSE/libeconf.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9e47b82c8c419a2674e531fcc4227df55eb1a2b2d6941927c77885e67099ef9d',
|
|
armv7l: '9e47b82c8c419a2674e531fcc4227df55eb1a2b2d6941927c77885e67099ef9d',
|
|
i686: 'ada290c52e6796db77221f78cbc39c1f82551af108516733e63d7db722e4b867',
|
|
x86_64: '0566bfa9e58839df70bfe216e3d76bd04aaca6ce5825a71b5add1eae98930c21'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'gcc_lib' # R
|
|
end
|