summaryrefslogtreecommitdiff
path: root/multimedia/emby-server/pkg-install
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/emby-server/pkg-install')
-rw-r--r--multimedia/emby-server/pkg-install15
1 files changed, 15 insertions, 0 deletions
diff --git a/multimedia/emby-server/pkg-install b/multimedia/emby-server/pkg-install
new file mode 100644
index 000000000000..dd55c74de183
--- /dev/null
+++ b/multimedia/emby-server/pkg-install
@@ -0,0 +1,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