mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-18 14:31:18 +02:00
15 lines
183 B
Bash
15 lines
183 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
for pmdir in %%PORT_MIMEDIRS%%; do
|
|
mkdir -p ${pmdir}
|
|
done
|
|
|
|
${PKG_PREFIX}/bin/update-desktop-database -q
|
|
|
|
exit 0
|
|
#EOF
|