2019-11-20 15:28:18 -07:00
|
|
|
name: nvim
|
2020-06-14 19:39:32 -07:00
|
|
|
base: core20
|
2019-11-20 15:28:18 -07:00
|
|
|
adopt-info: nvim
|
2018-01-29 15:02:15 -07:00
|
|
|
summary: Vim-fork focused on extensibility and agility.
|
|
|
|
description: |
|
|
|
|
Neovim is a project that seeks to aggressively refactor Vim in order to:
|
|
|
|
|
|
|
|
Simplify maintenance and encourage contributions
|
|
|
|
Split the work between multiple developers
|
|
|
|
Enable the implementation of new/modern user interfaces without any modifications to the core source
|
|
|
|
Improve extensibility with a new plugin architecture
|
|
|
|
For lots more details, see the wiki!
|
2019-11-20 15:28:18 -07:00
|
|
|
|
|
|
|
grade: stable # must be 'stable' to release into candidate/stable channels
|
2019-12-23 22:43:25 -07:00
|
|
|
confinement: classic
|
2018-01-29 15:02:15 -07:00
|
|
|
|
|
|
|
apps:
|
2019-11-20 15:28:18 -07:00
|
|
|
nvim:
|
|
|
|
command: usr/bin/nvim
|
2018-01-29 15:02:15 -07:00
|
|
|
environment:
|
|
|
|
HOME: /home/$USER
|
2019-11-21 13:26:11 -07:00
|
|
|
VIM: $SNAP/usr/share/nvim
|
|
|
|
VIMRUNTIME: $SNAP/usr/share/nvim/runtime
|
|
|
|
desktop: usr/share/applications/nvim.desktop
|
2018-01-29 15:02:15 -07:00
|
|
|
|
|
|
|
parts:
|
2019-11-20 15:28:18 -07:00
|
|
|
nvim:
|
2018-01-29 15:02:15 -07:00
|
|
|
source: .
|
2019-11-20 15:28:18 -07:00
|
|
|
override-pull: |
|
|
|
|
snapcraftctl pull
|
|
|
|
major="$(awk '/NVIM_VERSION_MAJOR/{gsub(")","",$2); print $2}' CMakeLists.txt)"
|
|
|
|
minor="$(awk '/NVIM_VERSION_MINOR/{gsub(")","",$2); print $2}' CMakeLists.txt)"
|
|
|
|
patch="$(awk '/NVIM_VERSION_PATCH/{gsub(")","",$2); print $2}' CMakeLists.txt)"
|
|
|
|
version_prefix="v$major.$minor.$patch"
|
|
|
|
git_described="$(git describe --first-parent --dirty 2> /dev/null | perl -lpe 's/v\d.\d.\d-//g')"
|
|
|
|
git_described="${git_described:-$(git describe --first-parent --tags --always --dirty)}"
|
|
|
|
snapcraftctl set-version "${version_prefix}-${git_described}"
|
2018-01-29 15:02:15 -07:00
|
|
|
plugin: make
|
|
|
|
make-parameters:
|
2020-06-14 19:41:40 -07:00
|
|
|
- CMAKE_BUILD_TYPE=RelWithDebInfo
|
2019-11-20 15:28:18 -07:00
|
|
|
- CMAKE_INSTALL_PREFIX=/usr
|
2019-11-21 13:26:11 -07:00
|
|
|
override-build: |
|
|
|
|
snapcraftctl build
|
|
|
|
# Fix Desktop file
|
|
|
|
sed -i 's|^Exec=nvim|Exec=/snap/bin/nvim.nvim|' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/nvim.desktop
|
|
|
|
sed -i 's|^TryExec=nvim|TryExec=/snap/bin/nvim.nvim|' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/nvim.desktop
|
|
|
|
sed -i 's|^Icon=.*|Icon=${SNAP}/usr/share/pixmaps/nvim.png|' ${SNAPCRAFT_PART_INSTALL}/usr/share/applications/nvim.desktop
|
2018-01-29 15:02:15 -07:00
|
|
|
build-packages:
|
|
|
|
- ninja-build
|
|
|
|
- libtool
|
|
|
|
- libtool-bin
|
|
|
|
- autoconf
|
|
|
|
- automake
|
|
|
|
- cmake
|
2020-06-14 19:40:37 -07:00
|
|
|
- gawk
|
2018-01-29 15:02:15 -07:00
|
|
|
- g++
|
2019-11-20 15:28:18 -07:00
|
|
|
- git
|
|
|
|
- gettext
|
2018-01-29 15:02:15 -07:00
|
|
|
- pkg-config
|
|
|
|
- unzip
|
2020-06-14 19:40:37 -07:00
|
|
|
- wget
|
2019-11-20 15:28:18 -07:00
|
|
|
prime:
|
|
|
|
- -usr/share/man
|
|
|
|
|