mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44:17 +08:00
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[source]
|
|
tar = "https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-3.11.tar.gz"
|
|
blake3 = "cd406668a9ed5712efac1a8685125b83626690b73bbc6cb5de82ef00e3f65087"
|
|
patches = [
|
|
"./01_redox.patch"
|
|
]
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"curl",
|
|
"expat",
|
|
"libjpeg",
|
|
"libpng",
|
|
"nghttp2",
|
|
"openssl1",
|
|
"sdl1",
|
|
"zlib",
|
|
"freetype2",
|
|
"liborbital",
|
|
"libiconv"
|
|
]
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
# Netsurf does not currently support out-of-tree builds :(
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
|
|
export TARGET="framebuffer"
|
|
export CFLAGS="${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"
|
|
|
|
"$COOKBOOK_MAKE" PREFIX=/usr V=1 -j"$($NPROC)"
|
|
"$COOKBOOK_MAKE" DESTDIR="$COOKBOOK_STAGE" PREFIX=/usr install -j"$($NPROC)"
|
|
mkdir -pv "$COOKBOOK_STAGE/ui/apps"
|
|
cp -v "${COOKBOOK_RECIPE}/manifest" "$COOKBOOK_STAGE/ui/apps/00_netsurf"
|
|
"""
|
|
|
|
[package]
|
|
dependencies = [
|
|
"ca-certificates",
|
|
"orbital",
|
|
]
|