1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 20:57:46 +00:00

Ports: Add lrzip port

This commit is contained in:
Fabian Dellwing 2023-03-11 14:47:14 +01:00 committed by Jelle Raaijmakers
parent 50cef4708c
commit 7448db9940
4 changed files with 62 additions and 0 deletions

16
Ports/lrzip/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env -S bash ../.port_include.sh
port='lrzip'
version='0.651'
useconfigure='true'
files="https://github.com/ckolivas/lrzip/archive/refs/tags/v${version}.tar.gz v${version}.tar.gz f4c84de778a059123040681fd47c17565fcc4fec0ccc68fcf32d97fad16cd892"
auth_type='sha256'
depends=(
'bzip2'
'lz4'
'lzo'
'zlib'
)
configure() {
run ./autogen.sh --host="${SERENITY_ARCH}-pc-serenity"
}