cruxports/nyxt/Pkgfile

23 lines
551 B
Plaintext
Raw Normal View History

2022-03-09 22:01:59 +00:00
# Description: keyboard-centric, extensible web browser
# URL: https://nyxt.atlas.engineer
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-04-26 11:51:12 +00:00
# Depends on: libfixposix sbcl webkitgtk
2022-03-09 22:01:59 +00:00
# Nice to have: xclip enchant
name=nyxt
version=2.2.4
release=1
2022-03-20 20:58:05 +00:00
source=(https://github.com/atlas-engineer/nyxt/releases/download/$version/$name-$version-source-with-submodules.tar.xz vi-keybindings.patch)
2022-03-09 22:01:59 +00:00
build() {
2022-03-20 20:58:05 +00:00
# some tweaks to the vi keymap
2022-03-18 00:42:56 +00:00
cd source
2022-03-20 20:58:05 +00:00
patch -p1 < $SRC/vi-keybindings.patch
2022-03-18 00:42:56 +00:00
cd -
2022-03-09 22:01:59 +00:00
make all
make PREFIX=/usr DESTDIR=$PKG install
}