mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
19 lines
388 B
Bash
Executable file
19 lines
388 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='xz'
|
|
version='5.6.2'
|
|
depends=(
|
|
'libiconv'
|
|
'zlib'
|
|
)
|
|
files=(
|
|
"https://tukaani.org/xz/xz-${version}.tar.gz#8bfd20c0e1d86f0402f2497cfa71c6ab62d4cd35fd704276e3140bfb71414519"
|
|
)
|
|
useconfigure='true'
|
|
use_fresh_config_sub='true'
|
|
config_sub_paths=(
|
|
'build-aux/config.sub'
|
|
)
|
|
configopts=(
|
|
'--disable-static'
|
|
'--enable-shared'
|
|
)
|