mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 20:04:19 +08:00
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
VERSION=3.7
|
|
TAR=http://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$VERSION.tar.gz
|
|
BUILD_DEPENDS=(curl expat libjpeg libpng nghttp2 openssl sdl zlib freetype liborbital libiconv)
|
|
DEPENDS="ca-certificates orbital"
|
|
|
|
function recipe_version {
|
|
echo "$VERSION"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_update {
|
|
echo "skipping update"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
sysroot="$(realpath ../sysroot)"
|
|
export TARGET="framebuffer"
|
|
export CFLAGS="-I$sysroot/include -I${PWD}/inst-${TARGET}/include"
|
|
export LDFLAGS="-L$sysroot/lib -L${PWD}/inst-${TARGET}/lib -static -Wl,--allow-multiple-definition -Wl,-Bstatic"
|
|
# nghttp2 is not linked for some reason
|
|
export LDFLAGS="${LDFLAGS} -lcurl -lnghttp2"
|
|
make V=1 -j"$(nproc)"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_test {
|
|
echo "skipping test"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
make clean
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
make DESTDIR="$dest" install
|
|
mkdir -pv "$dest/ui/apps"
|
|
cp -v ../manifest "$dest/ui/apps/00_netsurf"
|
|
skip=1
|
|
}
|