Update databases/rocksdb to version 3.11.2
[dports.git] / multimedia / emby-server / pkg-install
1 #!/bin/sh
2
3 if [ $# -ne 2 ]; then
4     echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
5     exit 1
6 fi
7
8 case $2 in
9     POST-INSTALL)
10         echo "Downloading Mozilla's root certificates and importing into the Mono Trust store..."
11         ${PKG_PREFIX}/bin/mozroots --import --sync
12         ;;
13 esac
14
15 exit 0