mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-18 14:31:18 +02:00
11 lines
202 B
Bash
11 lines
202 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin:%%PREFIX%%/bin
|
|
export PATH
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "Running fc-cache to build fontconfig cache..."
|
|
fc-cache -f -s -v
|
|
exit 0
|
|
fi
|