From e2a021e2e2427d1b1fbfd4dc930c7350ff7e03dc Mon Sep 17 00:00:00 2001 From: Bernhard Suttner Date: Sat, 18 Jan 2025 15:10:42 +0100 Subject: [PATCH 1/2] Add neovim.yaml for simple test (cherry picked from commit b6435479f1cec9aaa3f6798f3e9ce4842f76bd8f) --- recipes/neovim.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 recipes/neovim.yml diff --git a/recipes/neovim.yml b/recipes/neovim.yml new file mode 100644 index 00000000..3c846c0e --- /dev/null +++ b/recipes/neovim.yml @@ -0,0 +1,23 @@ +app: neovim +union: true + +ingredients: + dist: noble + sources: + - deb http://us.archive.ubuntu.com/ubuntu/ focal main universe # works for amd64 + - deb http://ports.ubuntu.com/ubuntu-ports/ focal main universe # works for arm64 + +script: + - ls + - cat > neovim.desktop <<\EOF + - [Desktop Entry] + - Type=Application + - Name=neovim + - Exec=nvim + - Icon=neovim + - Categories=Development;TextEditor; + - Comment=Vim-fork focused on extensibility and usability + - EOF + - wget -c https://raw.githubusercontent.com/neovim/neovim.github.io/master/logos/neovim-logo-300x87.png -O neovim.png + - mkdir -p usr/share/icons/hicolor/256x256/apps/ + - cp neovim.png usr/share/icons/hicolor/256x256/apps/neovim.png From 085b5b40505d1551f3187e1ab79b5fa0e9043486 Mon Sep 17 00:00:00 2001 From: Bernhard Suttner Date: Mon, 27 Jan 2025 22:40:20 +0100 Subject: [PATCH 2/2] Update neovim.yml Use focal instead of noble --- recipes/neovim.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/neovim.yml b/recipes/neovim.yml index 3c846c0e..43ac4424 100644 --- a/recipes/neovim.yml +++ b/recipes/neovim.yml @@ -2,7 +2,7 @@ app: neovim union: true ingredients: - dist: noble + dist: focal sources: - deb http://us.archive.ubuntu.com/ubuntu/ focal main universe # works for amd64 - deb http://ports.ubuntu.com/ubuntu-ports/ focal main universe # works for arm64