[arch-commits] Commit in hyphen/trunk (PKGBUILD)
Andreas Radke
andyrtr at archlinux.org
Mon Sep 23 19:33:07 UTC 2019
Date: Monday, September 23, 2019 @ 19:33:06
Author: andyrtr
Revision: 363301
fix quoting
Modified:
hyphen/trunk/PKGBUILD
----------+
PKGBUILD | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2019-09-23 19:31:57 UTC (rev 363300)
+++ PKGBUILD 2019-09-23 19:33:06 UTC (rev 363301)
@@ -12,7 +12,7 @@
sha1sums=('0556c392beb59433e577e3517575801212201df6')
build() {
- cd $pkgname-$pkgver
+ cd "$pkgname"-$pkgver
./configure --prefix=/usr --disable-static
make
}
@@ -21,7 +21,7 @@
pkgdesc="library for high quality hyphenation and justification"
depends=('glibc' 'perl')
- cd $pkgbase-$pkgver
+ cd "$pkgbase"-$pkgver
make DESTDIR="$pkgdir/" install-libLTLIBRARIES
make DESTDIR="$pkgdir/" install-binSCRIPTS
make DESTDIR="$pkgdir/" install-includeHEADERS
@@ -35,7 +35,7 @@
# arch=('any')
optdepends=('hyphen: offers hyphenation library functions')
- cd $pkgbase-$pkgver
+ cd "$pkgbase"-$pkgver
make DESTDIR="$pkgdir/" install-hyphDATA
pushd ${pkgdir}/usr/share/hyphen/
@@ -47,8 +47,8 @@
# the symlinks
install -dm755 ${pkgdir}/usr/share/myspell/dicts
- pushd $pkgdir/usr/share/myspell/dicts
- for file in $pkgdir/usr/share/hyphen/*; do
+ pushd "$pkgdir"/usr/share/myspell/dicts
+ for file in "$pkgdir"/usr/share/hyphen/*; do
ln -sv /usr/share/hyphen/$(basename $file) .
done
popd
More information about the arch-commits
mailing list