mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
03c2f48939
PR: 190900 Submitted by: ports fury
10 lines
285 B
Bash
10 lines
285 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
cd $PKG_PREFIX/lib/scm && $PKG_PREFIX/bin/scm -l mkimpcat.scm
|
|
cd $PKG_PREFIX/lib/scm && $PKG_PREFIX/bin/scm -l slib/mklibcat.scm
|
|
elif [ "$2" = "DEINSTALL" ] ; then
|
|
rm -f $PKG_PREFIX/lib/scm/slibcat
|
|
rm -f $PKG_PREFIX/lib/scm/implcat
|
|
fi
|