23 lines
551 B
Plaintext
23 lines
551 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=2.2.4
|
|
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
|
|
cd source
|
|
patch -p1 < $SRC/vi-keybindings.patch
|
|
cd -
|
|
|
|
make all
|
|
make PREFIX=/usr DESTDIR=$PKG install
|
|
|
|
}
|