mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
17 lines
488 B
Bash
Executable file
17 lines
488 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=pv
|
|
version=1.6.20
|
|
useconfigure=true
|
|
configopts=("--disable-nls")
|
|
files=(
|
|
"http://www.ivarch.com/programs/sources/pv-${version}.tar.bz2#e831951eff0718fba9b1ef286128773b9d0e723e1fbfae88d5a3188814fdc603"
|
|
)
|
|
|
|
export CFLAGS=-Wno-deprecated-declarations
|
|
|
|
# Map LD to the serenity Toolchain, otherwise the host LD is used.
|
|
if [ "$SERENITY_TOOLCHAIN" = "Clang" ]; then
|
|
export LD=$(CC)
|
|
else
|
|
export LD="${SERENITY_ARCH}-pc-serenity-ld"
|
|
fi
|