postinst is in mono-gac 2.10.8.1-1ubuntu2.3.
This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh -e
# Install the GAC
if [ -x /usr/share/cli-common/gac-install ]; then
/usr/share/cli-common/gac-install mono
fi
# Update the alternatives
update-alternatives \
--install /usr/bin/cli-gacutil global-assembly-cache-tool /usr/bin/gacutil 10 \
--slave /usr/share/man/man1/cli-gacutil.1.gz cli-gacutil.1.gz /usr/share/man/man1/gacutil.1.gz
|