From 49c7560c86c1fcc30d451fb20dd812731f247e46 Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 6 May 2019 09:07:35 -0400 Subject: 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. --- newapkbuild.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/newapkbuild.in b/newapkbuild.in index 880d792..8c689f7 100644 --- a/newapkbuild.in +++ b/newapkbuild.in @@ -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" -- cgit v1.2.3