summaryrefslogtreecommitdiff
path: root/repo/font/font-opensans.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-04-20 22:40:49 +0000
committerdavidovski <david@davidovski.xyz>2022-04-20 22:40:49 +0000
commit1084afc3c4d9c83e61620de60ba59a4393a33cb0 (patch)
tree17b2e37df0f1d61a83566fda5f707faffab54628 /repo/font/font-opensans.xibuild
parentc35d083dc525e223b085ec00e6863ea6eafb003c (diff)
fixed create to work within env
Diffstat (limited to 'repo/font/font-opensans.xibuild')
-rw-r--r--repo/font/font-opensans.xibuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/repo/font/font-opensans.xibuild b/repo/font/font-opensans.xibuild
index 009c172..26369eb 100644
--- a/repo/font/font-opensans.xibuild
+++ b/repo/font/font-opensans.xibuild
@@ -9,7 +9,9 @@ DEPS="fontconfig mkfontscale "
SOURCE="https://github.com/googlefonts/opensans.git"
package() {
- install -D -m644 fonts/ttf/*.ttf -t $PKG_DEST/usr/share/fonts/TTF/
+ for f in fonts/ttf/*.ttf; do
+ install -D -m644 $f $PKG_DEST/usr/share/fonts/TTF/
+ done
}