mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
93 lines
3.4 KiB
Bash
93 lines
3.4 KiB
Bash
# Maintainer: Kyle Keen <keenerd@gmail.com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - mozconfig changes
|
|
# - patch to fix neon usage
|
|
|
|
highmem=1
|
|
buildarch=12
|
|
|
|
pkgname=seamonkey
|
|
pkgver=2.53.5
|
|
pkgrel=3
|
|
pkgdesc="SeaMonkey internet suite"
|
|
arch=('x86_64')
|
|
license=('MPL')
|
|
depends=('dbus-glib' 'gtk3' 'hunspell' 'icu'
|
|
'libevent' 'libpulse' 'libvpx' 'libxt' 'mime-types'
|
|
'nss' 'sqlite' 'startup-notification')
|
|
makedepends=('autoconf2.13' 'clang' 'gtk2' 'imake' 'llvm' 'mesa' 'python2-setuptools'
|
|
'python2-psutil' 'rust' 'yasm' 'unzip' 'zip' 'nasm')
|
|
optdepends=('networkmanager: Location detection via available WiFi networks'
|
|
'libnotify: Notification integration'
|
|
'pulseaudio: Audio support')
|
|
url="https://www.seamonkey-project.org/"
|
|
source=("https://archive.mozilla.org/pub/seamonkey/releases/$pkgver/source/seamonkey-$pkgver.source.tar.xz"
|
|
"rust148-packed_simd.patch"
|
|
"mozconfig"
|
|
"xulrunner-27.0-build-arm.patch")
|
|
sha256sums=('ab1cef1db8e6cb725ef4be65d3cad3a5fb5019d0cdc3baa13d1c24ef53e28395'
|
|
'375d3097942db56357f9e254d5be8b936a2f02b24345e7b17258dbd4dc382b69'
|
|
'5341594529a763598f979b4c84f5a7892f97a0727f4283798c94a1e8869f70fe'
|
|
'bc83b8a51c81a401da2fbe1f7cd0843248c32607d3a51119585df074d797922e')
|
|
install="$pkgname.install"
|
|
|
|
# Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: These are for Arch Linux use ONLY. For your own distribution, please
|
|
# get your own set of keys. Feel free to contact foutrelis@archlinux.org for
|
|
# more information.
|
|
_google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM
|
|
|
|
# Mozilla API keys (see https://location.services.mozilla.com/api)
|
|
# Note: These are for Arch Linux use ONLY. For your own distribution, please
|
|
# get your own set of keys. Feel free to contact heftig@archlinux.org for
|
|
# more information.
|
|
_mozilla_api_key=e05d56db0a694edc8b5aaebda3f2db6a
|
|
|
|
prepare() {
|
|
cd "$pkgname-$pkgver"
|
|
cp ../mozconfig .mozconfig
|
|
|
|
patch -Np1 -d mozilla <../rust148-packed_simd.patch
|
|
|
|
echo -n "$_google_api_key" > google-api-key
|
|
echo -n "$_mozilla_api_key" > mozilla-api-key
|
|
|
|
cat >> .mozconfig <<EOF
|
|
ac_add_options --with-google-location-service-api-keyfile=${PWD@Q}/google-api-key
|
|
ac_add_options --with-google-safebrowsing-api-keyfile=${PWD@Q}/google-api-key
|
|
ac_add_options --with-mozilla-api-keyfile=${PWD@Q}/mozilla-api-key
|
|
|
|
# ALARM
|
|
ac_add_options --disable-webrtc
|
|
EOF
|
|
|
|
[[ $CARCH != "aarch64" ]] && echo "ac_add_options --disable-elf-hack" >> .mozconfig
|
|
LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
|
patch -p2 -d mozilla -i "${srcdir}"/xulrunner-27.0-build-arm.patch
|
|
}
|
|
|
|
build() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make -f client.mk build
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make -f client.mk DESTDIR="$pkgdir" INSTALL_SDK= install
|
|
|
|
rm -rf "$pkgdir"/usr/lib/seamonkey/{dictionaries,hyphenation}
|
|
ln -s /usr/share/hunspell "$pkgdir/usr/lib/seamonkey/dictionaries"
|
|
ln -s /usr/share/hyphen "$pkgdir/usr/lib/seamonkey/hyphenation"
|
|
|
|
install -Dm644 suite/branding/seamonkey/default128.png \
|
|
"$pkgdir/usr/share/pixmaps/seamonkey.png"
|
|
|
|
install -Dm644 mozilla/toolkit/mozapps/installer/linux/rpm/mozilla.desktop \
|
|
"$pkgdir/usr/share/applications/seamonkey.desktop"
|
|
sed -i 's/@MOZ_APP_DISPLAYNAME@/SeaMonkey internet suite/' \
|
|
"$pkgdir/usr/share/applications/seamonkey.desktop"
|
|
sed -i 's/@MOZ_APP_NAME@/seamonkey/' "$pkgdir/usr/share/applications/seamonkey.desktop"
|
|
}
|