git » python-webencodings.git » commit 9fded23

fix unquoted variables

author Frederik Schwan
2020-08-28 13:01:40 UTC
committer Frederik Schwan
2020-08-28 13:01:40 UTC
parent 240cafe8aaae54fd323f1daa7f356c2d9f5fd626

fix unquoted variables

PKGBUILD +8 -8

diff --git a/PKGBUILD b/PKGBUILD
index e099821..42553d5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,29 +10,29 @@ url="https://github.com/gsnedders/python-webencodings"
 license=('BSD')
 makedepends=('python2' 'python' 'python-setuptools' 'python2-setuptools')
 checkdepends=('python-nose' 'python2-nose')
-source=(https://github.com/gsnedders/python-webencodings/archive/v$pkgver.tar.gz)
+source=(https://github.com/gsnedders/python-webencodings/archive/v${pkgver}.tar.gz)
 md5sums=('7eb67377743cd55eaa356496c439471e')
 
 package_python-webencodings() {
 pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
 depends=('python')
-    cd ${srcdir}/${pkgbase}-${pkgver}
+    cd ${pkgbase}-${pkgver}
 
-    python3 setup.py install --root=${pkgdir}
-    install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    python3 setup.py install --root="${pkgdir}"
+    install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 package_python2-webencodings() {
 pkgdesc="This is a Python implementation of the WHATWG Encoding standard."
 depends=('python2')
-    cd ${srcdir}/${pkgbase}-${pkgver}
+    cd ${pkgbase}-${pkgver}
 
-    python2 setup.py install --root=${pkgdir}
-    install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+    python2 setup.py install --root="${pkgdir}"
+    install -D -m644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
 }
 
 check() {
-    cd ${srcdir}/${pkgbase}-${pkgver}/webencodings
+    cd ${pkgbase}-${pkgver}/webencodings
 
     nosetests tests.py