mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[source]
|
|
tar = "https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-3.11.tar.gz"
|
|
blake3 = "cd406668a9ed5712efac1a8685125b83626690b73bbc6cb5de82ef00e3f65087"
|
|
patches = [
|
|
"./ipv6.patch",
|
|
"./01_redox.patch"
|
|
]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"curl",
|
|
"expat",
|
|
"libjpeg",
|
|
"libpng",
|
|
"nghttp2",
|
|
"openssl3",
|
|
"sdl1",
|
|
"zlib",
|
|
"freetype2",
|
|
"liborbital",
|
|
"libiconv"
|
|
]
|
|
dev-dependencies = [
|
|
"host:gperf"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
# Netsurf does not currently support out-of-tree builds :(
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
|
|
# obscure crash from sccache if jobs number is too much
|
|
COOKBOOK_MAKE_JOBS="$(( ${COOKBOOK_MAKE_JOBS} > 8 ? 8 : ${COOKBOOK_MAKE_JOBS} ))"
|
|
|
|
export TARGET="framebuffer"
|
|
export CFLAGS="-I${PWD}/inst-${TARGET}/include"
|
|
export LDFLAGS="${LDFLAGS} -L${COOKBOOK_SYSROOT}/lib -L${PWD}/inst-${TARGET}/lib -Wl,--allow-multiple-definition -Wl,-rpath-link,${COOKBOOK_SYSROOT}/lib"
|
|
# nghttp2 is not linked for some reason
|
|
export LDFLAGS="${LDFLAGS} -lcurl -lnghttp2"
|
|
# netsurf mixes up CFLAGS for host and build
|
|
export CC="${CC} ${CPPFLAGS}"
|
|
|
|
"$COOKBOOK_MAKE" PREFIX=/usr V=1 -j"$COOKBOOK_MAKE_JOBS"
|
|
"$COOKBOOK_MAKE" DESTDIR="$COOKBOOK_STAGE" PREFIX=/usr install -j"$COOKBOOK_MAKE_JOBS"
|
|
mkdir -pv "$COOKBOOK_STAGE/usr/share/ui/apps"
|
|
cp -v "${COOKBOOK_RECIPE}/manifest" "$COOKBOOK_STAGE/usr/share/ui/apps/00_netsurf"
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"ca-certificates",
|
|
"orbital",
|
|
]
|