neovide: fix typo

This commit is contained in:
rookiejet 2025-08-12 17:40:07 -04:00 committed by classabbyamp
parent 7d991fd9f0
commit 9e12d851f4

View file

@ -1,7 +1,7 @@
# Template file for 'neovide' # Template file for 'neovide'
pkgname=neovide pkgname=neovide
version=0.15.1 version=0.15.1
revision=1 revision=2
archs="x86_64* aarch64*" # the skia-bindings crate only supports these archs archs="x86_64* aarch64*" # the skia-bindings crate only supports these archs
build_style=cargo build_style=cargo
hostmakedepends="pkg-config clang ninja python gn curl git" hostmakedepends="pkg-config clang ninja python gn curl git"
@ -39,8 +39,8 @@ post_install() {
vlicense LICENSE vlicense LICENSE
vinstall assets/neovide.desktop 0644 usr/share/applications vinstall assets/neovide.desktop 0644 usr/share/applications
vmkdir usr/share/docs/neovide vmkdir usr/share/doc/neovide
for file in $(find website/docs -iname "*.md"); do for file in $(find website/docs -iname "*.md"); do
vinstall ${file} 0644 usr/share/docs/neovide vinstall ${file} 0644 usr/share/doc/neovide
done done
} }