summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorBaptiste Jonglez2016-11-28 23:01:03 +0100
committerBaptiste Jonglez2016-11-28 23:01:03 +0100
commitac44c923dccc71fc5bee22e569636af856fbecd8 (patch)
treead44613c63e120505f1729cb655fe95fa486ff92 /PKGBUILD
parent603afd74c4adf6c827e88505995579232d0f873b (diff)
downloadaur-sig2dot.tar.gz
sig2dot: Properly quote shell variables
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a483e0d5fed1..5ad7b89f47f3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,9 +8,9 @@ arch=('any')
url="http://www.chaosreigns.com/code/sig2dot/"
license=('GPL')
depends=('perl')
-source=(http://www.chaosreigns.com/code/sig2dot/sig2dot.pl)
+source=("http://www.chaosreigns.com/code/sig2dot/sig2dot.pl")
md5sums=('f8714bb139dcdbeb81485c33e2234f21')
package() {
- install -D -m0755 sig2dot.pl $pkgdir/usr/bin/sig2dot
+ install -D -m0755 sig2dot.pl "$pkgdir/usr/bin/sig2dot"
}