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
|
|
|
|
# Nice to have: xclip enchant
|
|
|
|
|
|
|
|
name=nyxt
|
2023-02-11 21:45:43 -05:00
|
|
|
version=3-pre-release-3
|
2022-08-24 10:17:29 -04:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/atlas-engineer/nyxt/releases/download/$version/$name-$version-source-with-submodules.tar.xz vi-keybindings.patch)
|
|
|
|
|
|
|
|
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
|
|
|
}
|