Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
4.3 KiB

# The Pale Moon team recommends building with GCC 4.9. While other versions like 5.x are known to work, they're unsupported.
8 years ago
name=Pale-Moon
7 years ago
version=27.7.1
version_gcc=4.9.4
8 years ago
version_autoconf=2.13
8 years ago
update_url="https://github.com/MoonchildProductions/$name/releases"
update_names="/archive/${version}_Release.tar.gz"
dlextract "https://github.com/MoonchildProductions/$name/archive/${version}_Release/$name-${version}_Release.tar.gz" \
7 years ago
'd4aae2eb6ac8b2d1368466a561813f06'
extrafile 'palemoon.desktop'
7 years ago
( name=gcc version="$version_gcc"
dlextract "https://ftp.gnu.org/gnu/$name/$name-$version/$name-$version.tar.bz2" \
'87c24a4090c1577ba817ec6882602491'
)
8 years ago
( name=autoconf version="$version_autoconf"
dlextract "https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz" \
'9de56d4a161a723228220b0f425dc711'
)
_
7 years ago
( cd "gcc-$version_gcc"
sed -i -e 's/\.\/fixinc\.sh/-c true/' gcc/Makefile.in
mkdir build; cd build
../configure \
--prefix="$PWD/../install" \
--disable-bootstrap \
--enable-languages=c++
make
make install
)
8 years ago
8 years ago
( cd "autoconf-$version_autoconf"
./configure --prefix="$PWD/install" --program-suffix=-$version_autoconf
8 years ago
make
make install
)
cd "$name-${version}_Release"
cat > .mozconfig << EOF
# Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding.
#ac_add_options --enable-official-branding
#export MOZILLA_OFFICIAL=1
mk_add_options MOZ_CO_PROJECT=browser
ac_add_options --enable-application=browser
mk_add_options MOZ_OBJDIR="$PWD/pmbuild/"
ac_add_options --enable-optimize="-O2 -msse2 -mfpmath=sse"
ac_add_options --with-pthreads
ac_add_options --disable-installer
ac_add_options --disable-updater
ac_add_options --enable-release
ac_add_options --enable-devtools
ac_add_options --enable-jemalloc
ac_add_options --enable-shared-js
ac_add_options --enable-strip
ac_add_options --x-libraries="/$dir_prefix/$dir_lib"
8 years ago
# The section before this is kept up to date with https://developer.palemoon.org/Developer_Guide:Build_Instructions/Pale_Moon/Linux#head:Mozconfig_Files (with minor changes)
# The following section are my additions.
# Use system libraries (autoconf-2.13 && ./configure --help | grep system)
8 years ago
ac_add_options --with-system-nspr
ac_add_options --with-system-libevent
8 years ago
ac_add_options --with-system-nss
8 years ago
ac_add_options --with-system-jpeg
ac_add_options --with-system-zlib
ac_add_options --with-system-bz2
ac_add_options --with-system-webp
#ac_add_options --with-system-png - The APNG patch is not upstrean
7 years ago
$(pkg-config --atleast-version=1.4.0 hunspell && echo ac_add_options --enable-system-hunspell)
8 years ago
ac_add_options --enable-system-ffi
ac_add_options --with-system-libvpx
7 years ago
$(pkg-config --atleast-version="$(grep '^SQLITE_VERSION=' configure.in | cut -d'=' -f2)" sqlite3 && echo ac_add_options --enable-system-sqlite)
8 years ago
ac_add_options --enable-system-cairo
ac_add_options --enable-system-pixman
ac_add_options --with-system-icu
# Make pulseaudio support optional
$(pkg-config --exists libpulse || echo ac_add_options --disable-pulseaudio)
8 years ago
EOF
# This program is about as picky about compiler flags as it is about the compiler version.
# Sigh...
7 years ago
export MOZ_MAKE_FLAGS="$MAKEFLAGS"
unset CFLAGS CXXFLAGS LDFLAGS MAKEFLAGS
8 years ago
# Build
PATH="$PWD/../gcc-$version_gcc/install/bin:$PWD/../autoconf-$version_autoconf/install/bin:$PATH" \
make -f client.mk build
8 years ago
8 years ago
# Install
8 years ago
cd pmbuild
8 years ago
make package
mkdir -p "$dir_install/$dir_prefix/$dir_lib/palemoon"
cp -Ta dist/palemoon "$dir_install/$dir_prefix/$dir_lib/palemoon"
mkdir -p "$dir_install/$dir_prefix/$dir_bin"
ln -sf "/$dir_prefix/$dir_lib/palemoon/palemoon" "$dir_install/$dir_prefix/$dir_bin/palemoon"
8 years ago
cd ../..
# Install icons
for x in 16 32 48; do
mkdir -p "$dir_install/$dir_prefix/$dir_data/icons/hicolor/${x}x$x/apps"
ln -sf "/$dir_prefix/$dir_lib/palemoon/browser/chrome/icons/default/default$x.png" \
"$dir_install/$dir_prefix/$dir_data/icons/hicolor/${x}x$x/apps/palemoon.png"
8 years ago
done
mkdir -p "$dir_install/$dir_prefix/$dir_data/icons/hicolor/128x128/apps"
ln -sf "/$dir_prefix/$dir_lib/palemoon/browser/icons/mozicon128.png" \
"$dir_install/$dir_prefix/$dir_data/icons/hicolor/128x128/apps/palemoon.png"
8 years ago
# Install desktop
install -Dm644 -t "$dir_install/$dir_prefix/$dir_data/applications" palemoon.desktop
8 years ago
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: