PKGBUILDs/extra/thunderbird/PKGBUILD

90 lines
3.1 KiB
Bash
Raw Normal View History

2013-06-25 16:41:43 +00:00
# $Id$
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Alexander Baldeck <alexander@archlinux.org>
# Contributor: Dale Blount <dale@archlinux.org>
# Contributor: Anders Bostrom <anders.bostrom@home.se>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - mozconfig changes for ARM
2014-02-17 03:33:58 +00:00
# - patch to remove NEON/SIMD checks from configure
# - memory saving LDFLAGS
2014-03-03 18:37:35 +00:00
# - enable calendar in mozconfig
2013-06-25 16:41:43 +00:00
2015-08-09 00:02:50 +00:00
buildarch=28
2013-06-25 16:41:43 +00:00
pkgname=thunderbird
2015-11-26 01:09:15 +00:00
pkgver=38.4.0
pkgrel=1
2013-06-25 16:41:43 +00:00
pkgdesc="Standalone Mail/News reader"
arch=('i686' 'x86_64')
license=('MPL' 'GPL')
url="http://www.mozilla.org/thunderbird/"
2015-06-12 00:36:35 +00:00
depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types'
'dbus-glib' 'alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme'
'libvpx' 'icu' 'libevent' 'nss' 'hunspell' 'sqlite')
2014-07-22 11:09:19 +00:00
makedepends=('unzip' 'zip' 'python2' 'wireless_tools' 'yasm' 'mesa' 'libpulse')
2013-06-25 16:41:43 +00:00
optdepends=('libcanberra: for sound support')
install=thunderbird.install
2015-06-12 00:36:35 +00:00
source=(https://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2
2013-06-25 16:41:43 +00:00
mozconfig
thunderbird.desktop
thunderbird-install-dir.patch
2014-02-17 03:33:58 +00:00
vendor.js
no-neon.patch)
2015-06-12 00:36:35 +00:00
options=('!emptydirs' '!makeflags')
2015-11-26 01:09:15 +00:00
sha256sums=('326a4408d6dc79890cba8466dbc337acf99df76b58dadb0ed453e5e42af7fdbe'
2015-07-11 14:53:19 +00:00
'1f5ce57ba5531d533f34407010cfa5bb0fe09f9f1d3ed859cafbc5283b3a63d9'
2015-04-04 14:54:35 +00:00
'3fba13d88aeb003ab0811ef739463858172ce0662a1c7d62835df3d83ddbb8fb'
2015-06-12 01:09:39 +00:00
'24599eab8862476744fe1619a9a53a5b8cdcab30b3fc5767512f31d3529bd05d'
2014-02-17 03:33:58 +00:00
'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed'
2015-08-09 00:02:50 +00:00
'd46ac749f8be3250fa70a13cd67b5f9204bedf8ff8955d3a71e1b8b2f4f48382')
2013-06-25 16:41:43 +00:00
prepare() {
2015-06-12 00:36:35 +00:00
cd comm-esr${pkgver%%.*}
2015-04-21 12:07:18 +00:00
patch -Np1 -i ../thunderbird-install-dir.patch
2013-06-25 16:41:43 +00:00
2014-02-17 03:33:58 +00:00
patch -Np0 -i ../no-neon.patch
2013-06-25 16:41:43 +00:00
cp "$srcdir/mozconfig" .mozconfig
# configure script misdetects the preprocessor without an optimization level
# https://bugs.archlinux.org/task/34644
2013-09-18 15:01:31 +00:00
sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' mozilla/configure
2013-06-25 16:41:43 +00:00
}
build() {
2015-06-12 00:36:35 +00:00
cd comm-esr${pkgver%%.*}
2013-06-25 16:41:43 +00:00
2015-06-12 00:36:35 +00:00
export LDFLAGS="$LDFLAGS -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
2013-06-25 16:41:43 +00:00
export PYTHON="/usr/bin/python2"
2015-06-12 00:36:35 +00:00
make -f client.mk build
2013-06-25 16:41:43 +00:00
}
package() {
2015-06-12 00:36:35 +00:00
cd comm-esr${pkgver%%.*}
make -f client.mk DESTDIR="$pkgdir" install
2013-06-25 16:41:43 +00:00
2015-06-12 00:36:35 +00:00
install -Dm644 ../vendor.js "$pkgdir/usr/lib/thunderbird/defaults/preferences/vendor.js"
2013-06-25 16:41:43 +00:00
2015-06-12 00:36:35 +00:00
for i in 16 22 24 32 48 256; do
install -Dm644 other-licenses/branding/thunderbird/mailicon$i.png \
"$pkgdir/usr/share/icons/hicolor/${i}x${i}/apps/thunderbird.png"
2013-06-25 16:41:43 +00:00
done
2015-06-12 00:36:35 +00:00
install -Dm644 ../thunderbird.desktop \
2013-06-25 16:41:43 +00:00
"$pkgdir/usr/share/applications/thunderbird.desktop"
2015-06-12 00:36:35 +00:00
# Use system-provided dictionaries
2013-06-25 16:41:43 +00:00
rm -rf "$pkgdir"/usr/lib/thunderbird/{dictionaries,hyphenation}
ln -sf /usr/share/hunspell "$pkgdir/usr/lib/thunderbird/dictionaries"
ln -sf /usr/share/hyphen "$pkgdir/usr/lib/thunderbird/hyphenation"
2015-08-15 03:29:26 +00:00
# Replace duplicate binary with symlink
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
ln -sf thunderbird "$pkgdir/usr/lib/thunderbird/thunderbird-bin"
2015-06-12 00:36:35 +00:00
# Remove development stuff
2014-07-22 11:09:19 +00:00
rm -r "$pkgdir"/usr/{include,lib/thunderbird-devel-*,share/idl}
2013-06-25 16:41:43 +00:00
}