PKGBUILDs/extra/thunderbird/PKGBUILD

77 lines
2.7 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
buildarch=20
highmem=1
pkgname=thunderbird
2013-10-27 22:37:34 +00:00
pkgver=24.0.1
2013-06-25 16:41:43 +00:00
pkgrel=1
pkgdesc="Standalone Mail/News reader"
arch=('i686' 'x86_64')
license=('MPL' 'GPL')
url="http://www.mozilla.org/thunderbird/"
depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'nss' 'sqlite' 'startup-notification')
makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13')
optdepends=('libcanberra: for sound support')
install=thunderbird.install
source=(ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/$pkgver/source/thunderbird-$pkgver.source.tar.bz2
mozconfig
thunderbird.desktop
thunderbird-install-dir.patch
vendor.js)
options=(!emptydirs)
2013-10-27 22:37:34 +00:00
sha256sums=('171086f079ea6a254780cf8348bea684c19c07f6b9f855b9e2fa18ad09e715cb'
2013-09-18 15:01:31 +00:00
'1e5fad181194155f65e4496759ff94523de8bcbc9838d257d65c303a9c409292'
2013-06-25 16:41:43 +00:00
'd506b771e765e09e2e039b975e25befade8eec97e8950813a32463604955ab4e'
'929a7ceca0e90d0635a2099b7df24033e865fb5b5b8c5824468c4561c21c377d'
'e4ea8e6788163d9f8db8f1f40023db3ea0a1358f9a4510169f2d4c4fe6a887ed')
prepare() {
2013-09-18 15:01:31 +00:00
cd comm-esr24
2013-06-25 16:41:43 +00:00
patch -Np1 -i "$srcdir/thunderbird-install-dir.patch"
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() {
2013-09-18 15:01:31 +00:00
cd comm-esr24
2013-06-25 16:41:43 +00:00
export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/thunderbird"
export PYTHON="/usr/bin/python2"
make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
}
package() {
2013-09-18 15:01:31 +00:00
cd comm-esr24
2013-06-25 16:41:43 +00:00
make -j1 -f client.mk DESTDIR="$pkgdir" install
install -Dm644 "$srcdir"/vendor.js "$pkgdir/usr/lib/thunderbird/defaults/preferences/vendor.js"
for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
install -Dm644 other-licenses/branding/thunderbird/mailicon${i/x*/}.png \
"$pkgdir/usr/share/icons/hicolor/$i/apps/thunderbird.png"
done
install -Dm644 "$srcdir/thunderbird.desktop" \
"$pkgdir/usr/share/applications/thunderbird.desktop"
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"
# We don't want the development stuff
rm -r "$pkgdir"/usr/{include,lib/thunderbird-devel,share/idl}
}