mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
14 lines
622 B
Bash
Executable File
14 lines
622 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=xz
|
|
version=5.2.5
|
|
useconfigure=true
|
|
files="https://tukaani.org/xz/xz-${version}.tar.gz xz-${version}.tar.gz f6f4910fd033078738bd82bfba4f49219d03b17eb0794eb91efbae419f4aba10"
|
|
auth_type=sha256
|
|
depends=("zlib" "libiconv")
|
|
|
|
install() {
|
|
run make DESTDIR=${SERENITY_INSTALL_ROOT} "${installopts[@]}" install
|
|
${CC} -pthread -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/liblzma.so -Wl,-soname,liblzma.so -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/liblzma.a -Wl,--no-whole-archive -lz -liconv
|
|
rm -f ${SERENITY_INSTALL_ROOT}/usr/local/lib/liblzma.la
|
|
}
|