[arch-commits] Commit in fillets-ng-data/trunk (PKGBUILD)
Frederik Schwan
freswa at archlinux.org
Fri Aug 28 12:20:01 UTC 2020
Date: Friday, August 28, 2020 @ 12:20:00
Author: freswa
Revision: 690684
fix unquoted variables
Modified:
fillets-ng-data/trunk/PKGBUILD
----------+
PKGBUILD | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-08-28 12:19:24 UTC (rev 690683)
+++ PKGBUILD 2020-08-28 12:20:00 UTC (rev 690684)
@@ -7,13 +7,13 @@
url="http://fillets.sf.net/"
arch=('any')
license=('GPL')
-changelog=$pkgname.changelog
-source=(https://downloads.sourceforge.net/fillets/$pkgname-$pkgver.tar.gz)
+changelog=${pkgname}.changelog
+source=(https://downloads.sourceforge.net/fillets/${pkgname}-${pkgver}.tar.gz)
sha256sums=('f0c979fb35ec550a43246fc209add8f45ca550a382c94d6383bb3f01b1073799')
package() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd ${pkgname}-${pkgver}
- install -d ${pkgdir}/usr/share/fillets-ng
- cp -r ${srcdir}/$pkgname-$pkgver/* ${pkgdir}/usr/share/fillets-ng
+ install -d "${pkgdir}"/usr/share/fillets-ng
+ cp -r ./* "${pkgdir}"/usr/share/fillets-ng
}
More information about the arch-commits
mailing list