add gpp, lzfse, update qemu => 9.0.0 (#9714)

* add gpp, update qemu

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

* add homepage, add lzfse

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

* rebuild gpp, qemu

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

* suggested changes

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

* fixup

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

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
Satadru Pramanik, DO, MPH, MEng
2024-04-25 12:17:13 -04:00
committed by GitHub
parent 9bb5a24210
commit 015f5767c3
21 changed files with 256 additions and 104 deletions

24
packages/lzfse.rb Normal file
View File

@@ -0,0 +1,24 @@
# Adapted from Arch Linux lzfse PKGBUILD at:
# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=lzfse
require 'buildsystems/cmake'
class Lzfse < CMake
description 'The LZFSE compression library and command line tool'
homepage 'https://github.com/lzfse/lzfse'
version '1.0'
license 'BSD'
compatibility 'all'
source_url 'https://github.com/lzfse/lzfse.git'
git_hashtag "lzfse-#{version}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '4aca531b2da2f2f6760a4451e8d571557061d312dcdb8f57d32b4a286c3c1cb6',
armv7l: '4aca531b2da2f2f6760a4451e8d571557061d312dcdb8f57d32b4a286c3c1cb6',
i686: '5ce5db851f62a5f104a7ca20cc49805281638af5955c8b3541db92c11c307f2f',
x86_64: '086c30927b7fff625f4435bac807af85f584cfeeb86f64585a0de952c1f1261e'
})
depends_on 'glibc' # R
end