newapkbuild: quote pkgname and pkgver

These are strings after all and should be quoted even if not strictly necessary because of tradition excluding spaces from package names.
This commit is contained in:
tcely 2019-05-06 09:07:35 -04:00 committed by Natanael Copa
parent b743186dfe
commit 49c7560c86
1 changed files with 2 additions and 2 deletions

View File

@ -241,8 +241,8 @@ newaport() {
cat >APKBUILD<<__EOF__
# Contributor:${PACKAGER:+" "}${PACKAGER}
# Maintainer:${MAINTAINER:+" "}${MAINTAINER}
pkgname=$pkgname
pkgver=$pv
pkgname="$pkgname"
pkgver="$pv"
pkgrel=0
pkgdesc="$pkgdesc"
url="$url"