mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
ed3f21f4b3
PR: 45268 Submitted by: maintainer
9 lines
144 B
Bash
9 lines
144 B
Bash
#!/bin/sh
|
|
|
|
PREFIX=${PKG_PREFIX:-/usr/local}
|
|
|
|
[ "x$1" = "x" ] && exit 1
|
|
if [ "x$2" = "xPOST-INSTALL" ]; then
|
|
mkdir -p ${PREFIX}/lib/timidity
|
|
fi
|