11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Work around a stupid behavior in GNU Install.
|
|
mkdir -p "$1/usr/share/fonts/TTF/"
|
|
|
|
|
|
for file in TTF/*
|
|
do
|
|
install -m644 $file "$1/usr/share/fonts/TTF/"
|
|
done
|