diff options
author | Ivan Puntiy | 2018-01-20 23:01:50 +0200 |
---|---|---|
committer | Ivan Puntiy | 2018-01-20 23:01:50 +0200 |
commit | 8425ce0ea88f39b7982e459f28fe60795b5f4a95 (patch) | |
tree | 9f22c88f41f5313692ddd8f80c014d8c0751266a | |
parent | 4d2ec082bcc4ace764fb28f447e82d9cee44f8ac (diff) | |
download | aur-8425ce0ea88f39b7982e459f28fe60795b5f4a95.tar.gz |
Quoted paths.
-rw-r--r-- | PKGBUILD | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -25,19 +25,19 @@ build() { package() { # install Type1 fonts - install -d ${pkgdir}/usr/share/fonts/Type1 - install -m644 ${srcdir}/culmus-$pkgver/*.{afm,pfa} \ - ${pkgdir}/usr/share/fonts/Type1 + install -d "${pkgdir}/usr/share/fonts/Type1" + install -m644 "${srcdir}/culmus-$pkgver/"*.{afm,pfa} \ + "${pkgdir}/usr/share/fonts/Type1" # install ttf fonts - install -d ${pkgdir}/usr/share/fonts/TTF - install -m644 ${srcdir}/culmus-$pkgver/*.ttf \ - ${pkgdir}/usr/share/fonts/TTF + install -d "${pkgdir}/usr/share/fonts/TTF" + install -m644 "${srcdir}/culmus-${pkgver}/"*.ttf \ + "${pkgdir}/usr/share/fonts/TTF" # install provided config file with priority 61 - install -d ${pkgdir}/etc/fonts/conf.avail/ - install -m644 ${srcdir}/culmus-$pkgver/culmus.conf \ - ${pkgdir}/etc/fonts/conf.avail/61-culmus.conf + install -d "${pkgdir}/etc/fonts/conf.avail/" + install -m644 "${srcdir}/culmus-${pkgver}/culmus.conf" \ + "${pkgdir}/etc/fonts/conf.avail/61-culmus.conf" # symlink for the abovementioned config file ln -fs "../conf.avail/61-culmus.conf" "${pkgdir}/etc/fonts/conf.d" |