Compare commits

..

No commits in common. "95c5d35820f26b83ef985ad8a08fc89b294858b2" and "0fd3ec64e7f45595f2f0eaad2608df718acd77ad" have entirely different histories.

View file

@ -20,11 +20,9 @@ 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-linux-x86_64.tar.gz" -o ${name}.tar.gz curl -L "https://github.com/${git_repo}/releases/latest/download/nvim-linux64.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 .
mkdir ${pkgdir}/usr cp -R nvim-linux64 ${pkgdir}/usr
cd ./nvim-linux-x86_64
cp -r share lib bin ${pkgdir}/usr/
} }