From 1084afc3c4d9c83e61620de60ba59a4393a33cb0 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 20 Apr 2022 22:40:49 +0000 Subject: fixed create to work within env --- repo/font/font-opensans.xibuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'repo/font') 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 } -- cgit v1.2.1