makedeb


neovim 0.9.5-1


Vim-fork focused on extensibility and usability

Package Details

Package Actions

Package Base:

neovim

Homepage:

https://neovim.io/

Licenses:

Apache-2.0

Submitter:

hwittenborn

Maintainer:

hwittenborn

Last Packager:

kavplex

Votes:

0

Popularity:

0.000000

First Submitted:

2022-04-15 23:35

Last Updated:

2024-03-12 04:29

Git Clone URL (click to copy):

https://mpr.makedeb.org/neovim.git

Latest Comments


moetayuko commented on 2023-09-02 02:30

There's something wrong with the build flags. PKGBUILD needs to be patched like this:

diff --git a/PKGBUILD b/PKGBUILD
index 90d5577..4da353d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -29,12 +29,12 @@ sha256sums=('SKIP')

 build() {
     cd "${pkgname}-${pkgver}/"
-    make CMAKE_BUILD_TYPE='Release'
+    make CMAKE_BUILD_TYPE='Release' CMAKE_INSTALL_PREFIX='/usr'
 }

 package() {
     cd "${pkgname}-${pkgver}/"
-    DESTDIR="${pkgdir}" make CMAKE_INSTALL_PREFIX='/usr' install
+    DESTDIR="${pkgdir}" make install
 }

 # vim: set sw=4 expandtab

Otherwise the flags of make and make install are inconsistent, a full rebuild is triggered on make install, and the resulting binary is a debug one.

Git commit identifiers referencing commits in the MPR package repository and URLs are converted to links automatically. Markdown syntax is partially supported.


hwittenborn commented on 2022-10-30 03:34

edited on 2022-10-30 03:34 by hwittenborn

Sorry for the delay @jrop, I just saw the out of date notification. I've got some scripts set up to update Neovim and some of my other packages automatically now so it shouldn't become out of date again.

Git commit identifiers referencing commits in the MPR package repository and URLs are converted to links automatically. Markdown syntax is partially supported.