summaryrefslogtreecommitdiff
path: root/multimedia/mediabrowser/pkg-install
blob: dd55c74de183abba59d599f03c2871efc2e06b95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

if [ $# -ne 2 ]; then
    echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
    exit 1
fi

case $2 in
    POST-INSTALL)
        echo "Downloading Mozilla's root certificates and importing into the Mono Trust store..."
        ${PKG_PREFIX}/bin/mozroots --import --sync
        ;;
esac

exit 0