mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6db349a3d6
PR: 17354 Submitted by: maintainer
10 lines
179 B
Bash
10 lines
179 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
|
|
mkdir -p ${PREFIX}/share/timidity
|
|
fi
|