Discussion:
install seamonkey
b***@hawaii-pacific.com
2021-04-16 22:12:01 UTC
Permalink
#! /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/
Loading...