aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2013-10-20 20:31:11 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-01 16:24:47 +0200
commitbcc8af46818bbec8e5bdfb7fffeaa96b2c2b31e6 (patch)
tree2044be4f430cfa6f6cd168592bd477e674b69505
parentf4174b36ca7cb642176d9291a3c4c55b94c48c9c (diff)
downloadpkgbuilds-bcc8af46818bbec8e5bdfb7fffeaa96b2c2b31e6.tar.xz
openhexagon: Fixed variable quoting
-rw-r--r--PKGBUILD14
1 files changed, 7 insertions, 7 deletions
diff --git a/PKGBUILD b/PKGBUILD
index abb82a4..7ad78fc 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -17,16 +17,16 @@ md5sums=('bda07a9d91a9dd8538d9a7a26562de69'
'808282b4d6cf58dacf16fae6068bd030')
package() {
- install -Dd "${pkgdir}/opt/OpenHexagon1.92"
- cp -r ${srcdir}/OpenHexagon1.92/ ${pkgdir}/opt/
+ install -Dd "$pkgdir"/opt/OpenHexagon1.92
+ cp -r "$srcdir"/OpenHexagon1.92/ "$pkgdir"/opt/
- install -Dd ${pkgdir}/usr/bin
- ln -s /opt/OpenHexagon1.92/OpenHexagon ${pkgdir}/usr/bin/openhexagon
+ install -Dd "$pkgdir"/usr/bin
+ ln -s /opt/OpenHexagon1.92/OpenHexagon "$pkgdir"/usr/bin/openhexagon
- # need world writeable Profiles for creating profiles and config for... config
- chmod 777 ${pkgdir}/opt/OpenHexagon1.92/{Profiles,config.json}
+ # Need world writeable Profiles for creating profiles and config for... config
+ chmod 777 "$pkgdir"/opt/OpenHexagon1.92/{Profiles,config.json}
- install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+ install -D -m644 "$srcdir"/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
# vim: set ts=4 sw=4 noet: