void-packages/srcpkgs/thunderbird/template
Juan RP 1c5f4690e6 xbps-src: always require current srcpkgs version in build dependencies.
That means that version comparators are not supported anymore in
hostmakedepends and makedepends.

This will ensure that a pkg is always built with the same build dependencies
everywhere, if the srcpkgs tree is uptodate.
2015-03-27 10:59:58 +01:00

49 lines
1.8 KiB
Bash

# Template build file for 'thunderbird'.
pkgname=thunderbird
version=31.5.0
revision=1
lib32disabled=yes
wrksrc="comm-esr${version/.*/}"
short_desc="Standalone Mail/News reader"
maintainer="Enno Boland <eb@s01.de>"
homepage="http://www.mozilla.org/thunderbird/"
license="MPL-1.1, GPL-2, LGPL-2.1"
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.bz2"
checksum=435719518dcf25fb3b810feefca489b92d30354d97836eab09cfdfd1c4b9139d
nocross="http://build.voidlinux.eu/builders/armv7l_builder/builds/10490/steps/shell_3/logs/stdio"
hostmakedepends="unzip zip perl python yasm pkg-config autoconf"
makedepends="python-devel cairo-devel libjpeg-turbo-devel pixman-devel
nss-devel sqlite-devel libXrender-devel gtk+-devel libevent-devel
libvpx-devel hunspell-devel startup-notification-devel dbus-glib-devel
alsa-lib-devel wireless_tools-devel libXScrnSaver-devel libSM-devel libXt-devel
pulseaudio-devel"
depends="desktop-file-utils hicolor-icon-theme"
do_build() {
cp -f ${FILESDIR}/mozconfig .mozconfig
export LDFLAGS="-Wl,-R/usr/lib/thunderbird"
SHELL=/bin/bash make ${makejobs} -f client.mk build MOZ_MAKE_FLAGS="${makejobs}"
}
do_install() {
make -f client.mk DESTDIR=${DESTDIR} install
vinstall ${FILESDIR}/vendor.js 644 usr/lib/thunderbird/defaults/pref
vinstall ${FILESDIR}/thunderbird.desktop 644 usr/share/applications
for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
vinstall other-licenses/branding/thunderbird/mailicon${i%x*}.png 644 \
usr/share/icons/hicolor/${i}/apps thunderbird.png
done
rm -rf ${DESTDIR}/usr/lib/thunderbird/{dictionaries,hyphenation}
ln -sf /usr/share/hunspell ${DESTDIR}/usr/lib/thunderbird/dictionaries
ln -sf /usr/share/hyphen ${DESTDIR}/usr/lib/thunderbird/hyphenation
# We don't want the development stuff
rm -r ${DESTDIR}/usr/{include,lib/thunderbird-devel,share/idl}
}