Search Criteria
Package Details: gnvim-git 0.3.1.r2.3705700-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/gnvim-git.git (read-only, click to copy) |
---|---|
Package Base: | gnvim-git |
Description: | Opinionated GTK4 Neovim GUI |
Upstream URL: | https://github.com/vhakulinen/gnvim |
Licenses: | MIT |
Conflicts: | gnvim |
Provides: | gnvim |
Submitter: | DaZ |
Maintainer: | eclairevoyant |
Last Packager: | eclairevoyant |
Votes: | 3 |
Popularity: | 0.000000 |
First Submitted: | 2019-02-26 21:46 (UTC) |
Last Updated: | 2023-05-20 18:57 (UTC) |
Dependencies (5)
- gtk4 (gtk4-customizableAUR, gtk4-paper-planeAUR, gtk4-gitAUR)
- neovim (nvim-with-restricted-modeAUR, neovim-nightly-binAUR, neovim-nightlyAUR, neovim-gitAUR)
- cargo (rustup-gitAUR, rust-nightly-binAUR, rust-gitAUR, rust-beta-binAUR, rust, rustup) (make)
- git (git-gitAUR, git-glAUR) (make)
- xorg-server-xvfb (xorg-server-xvfb-gitAUR) (check)
Latest Comments
Arcayr commented on 2024-06-09 10:13 (UTC) (edited on 2024-06-09 10:20 (UTC) by Arcayr)
it looks like the Makefile has changed significantly in the last two months so i had to make some changes to the PKGBUILD:
namely:
neovim>=0.10
in requirements to match upstream requirements.libadwaita
added tomakedepends
.sed -i '/@glib-compile-schemas/d' Makefile
added toprepare()
, replacing the previoussed
statement. the old one doesn't appear to be required now. the new one preventsmake
from compiling the glib schemas as part of the Makefile.--release
and--all-features
removed fromcargo build
inbuild()
. the Makefile referencesoptimized
as the suggested profile, so i swapped to that.--all-features
now includes flatpak helpers which aren't required.svenstaro commented on 2019-05-16 00:56 (UTC)
Can you add
?
DaZ commented on 2019-04-01 14:24 (UTC)
patched the default path instead, so it works swell without the desktop file as well :^)
urandom commented on 2019-04-01 13:24 (UTC)
The desktop file needs to be modified since gnvim is installed in /usr. The Exec needs to be changed for it to load its own runtime files:
Exec=/usr/bin/gnvim --gnvim-rtp /usr/share/gnvim/runtime -- %F
trevdev commented on 2019-03-02 19:15 (UTC)
Thanks!
gabmus commented on 2019-03-02 09:36 (UTC)
@trevdev: submitted a couple of patches upstream to fix these issues, if they get merged our problems are solved.
trevdev commented on 2019-03-02 01:16 (UTC)
Just a heads up, the .desktop reference is broken on install as well as the icon reference. At least, for me it is.
location: /usr/share/applications/gnvim.desktop
Contents [Desktop Entry] Type=Application Encoding=UTF-8 Name=GNvim Exec=/home/<user redacted>/.cache/yay/gnvim-git/pkg/gnvim-git//usr/bin/gnvim -- %F Icon=gnvim.png Terminal=false
Both the Exec/Icon settings seem incorrect. I fixed this manually with the last version but it broke again after updating.
DaZ commented on 2019-03-01 17:43 (UTC)
done, thanks for feedback :^)
gabmus commented on 2019-03-01 17:08 (UTC)
Please change line 29 of PKGBUILD to
make PREFIX="/usr" DESTDIR="$pkgdir/" install
to install under /usr instead of /usr/local