7 lines
157 B
Bash
Executable File
7 lines
157 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
find ./ -name '*Windows*' -exec rm -rf {} +
|
|
|
|
install -dm755 "$1/usr/share/fonts/TTF"
|
|
install -Dm644 -- *.ttf "$1/usr/share/fonts/TTF"
|