gtk/thunderbird/PKGBUILD

62 lines
2.3 KiB
Bash
Raw Normal View History

2013-04-28 16:58:07 +08:00
pkgname=thunderbird
pkgver=17.0.7
pkgrel=1
2013-04-28 16:58:07 +08:00
pkgdesc="Standalone Mail/News reader"
arch=('x86_64')
license=('MPL' 'GPL')
url="http://www.mozilla.org/thunderbird/"
2013-05-07 05:21:43 +08:00
depends=('alsa-lib' 'dbus-glib' 'desktop-file-utils' 'gtk2' 'hicolor-icon-theme' 'hunspell' 'libevent' 'libnotify' 'libvpx' 'libxt' 'mime-types' 'mozilla-common' 'nss' 'sqlite3' 'startup-notification' 'filesystem-extra')
2013-04-28 16:58:07 +08:00
makedepends=('unzip' 'zip' 'pkg-config' 'python2' 'wireless_tools' 'yasm' 'mesa' 'autoconf2.13')
2013-05-07 05:21:43 +08:00
optdepends=('thunderbird-i18n: for multilanguage support'
'libcanberra: for sound support')
2013-04-28 16:58:07 +08:00
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)
md5sums=('31f07c3911d1d6772831195af64db963'
2013-04-29 06:28:45 +08:00
'2e6dfd672d63a72d1e2fe1f9b91807e6'
2013-04-28 16:58:07 +08:00
'af3e5b344d2edf1c7d61bb0a5a96de9a'
'1c6f47b315a5d7830f8e901b1f723cfc'
'5a53179d14ae9631b7afe5e4d0fc0b25')
2013-04-29 06:28:45 +08:00
build() {
2013-04-28 16:58:07 +08:00
cd comm-esr17
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
sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
2013-04-29 06:28:45 +08:00
export LDFLAGS="$LDFLAGS -Wl,-rpath,/extra/usr/lib/thunderbird"
2013-04-28 16:58:07 +08:00
export PYTHON="/usr/bin/python2"
make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS"
}
package() {
cd comm-esr17
make -j1 -f client.mk DESTDIR="$pkgdir" install
2013-04-29 06:28:45 +08:00
install -Dm644 "$srcdir"/vendor.js "$pkgdir/extra/usr/lib/thunderbird/defaults/preferences/vendor.js"
2013-04-28 16:58:07 +08:00
for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
install -Dm644 other-licenses/branding/thunderbird/mailicon${i/x*/}.png \
2013-04-29 06:28:45 +08:00
"$pkgdir/extra/usr/share/icons/hicolor/$i/apps/thunderbird.png"
2013-04-28 16:58:07 +08:00
done
install -Dm644 "$srcdir/thunderbird.desktop" \
2013-04-29 06:28:45 +08:00
"$pkgdir/extra/usr/share/applications/thunderbird.desktop"
rm -rf "$pkgdir"/extra/usr/lib/thunderbird/{dictionaries,hyphenation}
ln -sf /usr/share/hunspell "$pkgdir/extra/usr/lib/thunderbird/dictionaries"
ln -sf /usr/share/hyphen "$pkgdir/extra/usr/lib/thunderbird/hyphenation"
# We don't want the development stuff
rm -r "$pkgdir"/extra/usr/{include,lib/thunderbird-devel,share/idl}
2013-04-28 16:58:07 +08:00
}