Compare commits

..

5 commits

Author SHA1 Message Date
95c5d35820
fix: Change PWD 2025-01-30 19:34:43 -06:00
cf223dece3
fix: List of directories 2025-01-30 19:32:18 -06:00
bca80f0d8e
fix: Create missing dir 2025-01-30 19:31:13 -06:00
81176c4f63
fix: Install locations for neovim 2025-01-30 19:30:04 -06:00
44c3b6c5ac
fix: neovim tar name 2025-01-30 19:26:58 -06:00

View file

@ -20,9 +20,11 @@ version() {
package() { package() {
# Pull sources # Pull sources
echo "Pulling ${name} ${version}" echo "Pulling ${name} ${version}"
curl -L "https://github.com/${git_repo}/releases/latest/download/nvim-linux64.tar.gz" -o ${name}.tar.gz curl -L "https://github.com/${git_repo}/releases/latest/download/nvim-linux-x86_64.tar.gz" -o ${name}.tar.gz
# Build package # Build package
echo "Creating the package" echo "Creating the package"
tar -xzf "${name}.tar.gz" -C . tar -xzf "${name}.tar.gz" -C .
cp -R nvim-linux64 ${pkgdir}/usr mkdir ${pkgdir}/usr
cd ./nvim-linux-x86_64
cp -r share lib bin ${pkgdir}/usr/
} }