Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Apr 2021 12:12:01 -1000
From:      bruce@hawaii-pacific.com
To:        freebsd-questions@freebsd.org
Subject:   install seamonkey
Message-ID:  <9bc14336-4c80-6cff-1125-f661e34fa99e@hawaii-pacific.com>

next in thread | raw e-mail | index | archive | help
#! /bin/sh

# This script will download, configure, and build seamonkey-2.53.7
# cd to directory where you want to download and build seamonkey. Run 
this script.  If you want to install uncomment "sudo gmake install" below.

fetch 
https://archive.mozilla.org/pub/seamonkey/releases/2.53.7/source/seamonkey-2.53.7.source.tar.xz

tar xvzf ./seamonkey-2.53.7.source.tar.xz

cd seamonkey-2.53.7


echo "export CC=clang" >> mozconfig
echo "export CXX=clang++" >> mozconfig
echo "ac_add_options --enable-application=comm/suite" >> mozconfig
echo "ac_add_options --enable-calendar" >> mozconfig
echo "ac_add_options --enable-irc" >> mozconfig
echo "ac_add_options --enable-dominspector" >> mozconfig
echo "mk_add_options MOZ_OBJDIR=./build/unix" >> mozconfig
echo "ac_add_options --enable-optimize" >> mozconfig
echo "ac_add_options --enable-js-shell" >> mozconfig
echo "#ac_add_options --enable-elf-hack" >> mozconfig
echo "ac_add_options --disable-debug-symbols" >> mozconfig
echo "ac_add_options --disable-tests" >> mozconfig
echo "# Disable checking that add-ons are signed by the trusted root" >> 
mozconfig
echo "MOZ_ADDON_SIGNING=0" >> mozconfig
echo "# Disable enforcing that add-ons are signed by the trusted root" 
 >> mozconfig
echo "MOZ_REQUIRE_SIGNING=0" >> mozconfig
echo "# Package js shell" >> mozconfig
echo "export MOZ_PACKAGE_JSSHELL=1" >> mozconfig

cd ./build/unix

../../configure

gmake

#sudo gmake install    # uncomment to install.

exit

# You can also go to 
https://www.seamonkey-project.org/dev/code-development and follow the 
directions there.  The dependencies are listed there, but for linux.

#The executable location is: seamonkey-2.53.7/build/unix/dist/bin/





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?9bc14336-4c80-6cff-1125-f661e34fa99e>