23 lines
624 B
Plaintext
23 lines
624 B
Plaintext
# 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
|
|
version=3-pre-release-2
|
|
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
|
|
|
|
# clean up footprint
|
|
find $PKG -name "README*" -exec rm -f '{}' +
|
|
}
|