kiss-mfavila-large/ports/clearsans-font/build

11 lines
175 B
Plaintext
Raw Normal View History

2021-09-16 22:06:34 +00:00
#!/bin/sh -e
2021-11-18 12:16:59 +00:00
# Work around a stupid behavior in GNU Install.
mkdir -p "$1/usr/share/fonts/TTF/"
2021-09-16 22:06:34 +00:00
for file in TTF/*
do
2021-11-18 12:16:59 +00:00
install -m644 $file "$1/usr/share/fonts/TTF/"
2021-09-16 22:06:34 +00:00
done