[arch-commits] Commit in xsensors/trunk (PKGBUILD)

Frederik Schwan freswa at archlinux.org
Fri Aug 28 13:13:32 UTC 2020


    Date: Friday, August 28, 2020 @ 13:13:31
  Author: freswa
Revision: 690861

fix unquoted variables

Modified:
  xsensors/trunk/PKGBUILD

----------+
 PKGBUILD |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 13:13:27 UTC (rev 690860)
+++ PKGBUILD	2020-08-28 13:13:31 UTC (rev 690861)
@@ -11,11 +11,11 @@
 url="https://github.com/Mystro256/xsensors"
 license=('GPL')
 depends=('gtk3' 'lm_sensors')
-source=(https://github.com/Mystro256/xsensors/archive/$pkgver.tar.gz)
+source=(https://github.com/Mystro256/xsensors/archive/${pkgver}.tar.gz)
 sha256sums=('4f583b72c99be13eb06249d5b28bda2f8f204e07e67049bc00c6c60cfd0c352c')
 
 build() {
-  cd "$pkgname-$pkgver"
+  cd ${pkgname}-${pkgver}
 
   ./configure --prefix=/usr
   make
@@ -22,7 +22,7 @@
 }
 
 package() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd ${pkgname}-${pkgver}
 
   make DESTDIR="${pkgdir}" install
 }



More information about the arch-commits mailing list