1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:47:35 +00:00

Ports/lrzip: Switch to the actual preconfigured release tarball

This avoids us having to run autoconf ourselves, resulting in a nice and
deterministic source package.
This commit is contained in:
Tim Schumacher 2023-04-10 11:22:04 +02:00 committed by Jelle Raaijmakers
parent d0e18b8a17
commit dca56ce1cb

View file

@ -2,7 +2,8 @@
port='lrzip' port='lrzip'
version='0.651' version='0.651'
useconfigure='true' useconfigure='true'
files="https://github.com/ckolivas/lrzip/archive/refs/tags/v${version}.tar.gz v${version}.tar.gz f4c84de778a059123040681fd47c17565fcc4fec0ccc68fcf32d97fad16cd892" use_fresh_config_sub='true'
files="http://ck.kolivas.org/apps/lrzip/lrzip-${version}.tar.xz lrzip-${version}.tar.xz 48bd8decb097c1596c9b3777959cd3e332819434ed77a2823e65aa436f1602f9"
auth_type='sha256' auth_type='sha256'
depends=( depends=(
'bzip2' 'bzip2'
@ -10,7 +11,3 @@ depends=(
'lzo' 'lzo'
'zlib' 'zlib'
) )
configure() {
run ./autogen.sh --host="${SERENITY_ARCH}-pc-serenity"
}