mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
11 lines
124 B
Bash
11 lines
124 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
POST-INSTALL)
|
|
dic="${PKG_PREFIX}/lib/sj3/dict/user"
|
|
mkdir -p $dic
|
|
chown bin.bin $dic
|
|
;;
|
|
esac
|
|
|