ports/www/iridium/files/iridium.in
Carlos J. Puga Medina 633f9296f4 Add new port www/iridium
Iridium is a free, open, and libre browser modification of the Chromium
code base, with privacy being enhanced in several key areas.

Automatic transmission of partial queries, keywords, metrics to central
services is inhibited and only occurs with consent.

WWW: https://iridiumbrowser.de/
2017-04-29 23:00:33 +00:00

19 lines
416 B
Bash

#!/bin/sh
SYSCTL=kern.ipc.shm_allow_removed
if [ "`/sbin/sysctl -n $SYSCTL`" = 0 ] ; then
cat << EOMSG
For correct operation, shared memory support has to be enabled
in Iridium by performing the following command as root :
sysctl $SYSCTL=1
To preserve this setting across reboots, append the following
to /etc/sysctl.conf :
$SYSCTL=1
EOMSG
exit 1
fi
ulimit -c 0
exec %%PREFIX%%/share/iridium/iridium ${1+"$@"}