2022-08-24 10:17:29 -04:00
|
|
|
# Description: keyboard-centric, extensible web browser
|
|
|
|
# URL: https://nyxt.atlas.engineer
|
|
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
|
|
# Depends on: libfixposix sbcl webkitgtk
|
2023-06-13 09:11:58 -04:00
|
|
|
# Optional: xclip enchant
|
2022-08-24 10:17:29 -04:00
|
|
|
|
|
|
|
name=nyxt
|
2024-01-27 19:06:18 -05:00
|
|
|
version=3.11.1
|
2022-08-24 10:17:29 -04:00
|
|
|
release=1
|
2023-05-22 07:36:26 -04:00
|
|
|
source=(https://github.com/atlas-engineer/nyxt/releases/download/$version/$name-$version-source-with-submodules.tar.xz vi-keybindings.patch)
|
2022-08-24 10:17:29 -04:00
|
|
|
|
|
|
|
build() {
|
|
|
|
|
|
|
|
# some tweaks to the vi keymap
|
|
|
|
patch -d source/mode -i $SRC/vi-keybindings.patch
|
|
|
|
|
|
|
|
make all
|
|
|
|
make PREFIX=/usr DESTDIR=$PKG install
|
|
|
|
|
2022-08-25 10:16:24 -04:00
|
|
|
# clean up footprint
|
2023-02-11 21:45:43 -05:00
|
|
|
find $PKG -name "README*" -delete
|
2022-08-24 10:17:29 -04:00
|
|
|
}
|