contrib/thunderbird/Pkgfile

81 lines
2.9 KiB
Plaintext
Raw Normal View History

2018-12-26 12:53:28 +01:00
# Description: Email client from the Mozilla project
# URL: https://www.thunderbird.net/en-US/
# Maintainer: Danny Rawlins, crux at romster dot me
2021-02-06 03:02:40 +01:00
# Depends on: alsa-lib autoconf-2.13 cbindgen clang dbus-glib gnupg gtk libidl libnotify lld nodejs nss startup-notification unzip yasm zip
2018-12-26 12:53:28 +01:00
# Optional: sccache
name=thunderbird
2021-04-20 10:32:03 +02:00
version=78.10.0
2021-02-27 02:37:43 +01:00
release=1
2021-02-06 03:02:40 +01:00
source=(https://archive.mozilla.org/pub/thunderbird/releases/$version/source/$name-$version.source.tar.xz
2021-04-10 16:28:56 +02:00
$name.desktop
0038-bmo-1667736-Update-packed_simd-to-compile-on-Rust-1.patch)
2018-12-26 12:53:28 +01:00
build() {
cd $name-$version
2021-04-10 16:28:56 +02:00
patch -p1 -i $SRC/0038-bmo-1667736-Update-packed_simd-to-compile-on-Rust-1.patch
if [ -e '/usr/bin/ccache' ]; then
export OS_CCACHE_COMPILERCHECK="$(/usr/bin/clang -dumpversion | sed -z 's/\n/ /g'; crux | cut -d' ' -f3)"
export CCACHE_COMPILERCHECK="string:$OS_CCACHE_COMPILERCHECK"
2020-04-12 02:42:48 +02:00
PATH=$(echo ${PATH} | awk -v RS=: -v ORS=: '/ccache/ {next} {print}' | sed 's/:*$//')
fi
2019-05-19 14:17:04 +02:00
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
2018-12-26 12:53:28 +01:00
cat <<- EOF > .mozconfig
ac_add_options --enable-application=comm/mail
ac_add_options --prefix=/usr
ac_add_options --enable-default-toolkit=cairo-gtk3
ac_add_options --with-system-jpeg
2021-04-10 16:28:56 +02:00
ac_add_options --with-system-libevent
2018-12-26 12:53:28 +01:00
ac_add_options --with-system-zlib
ac_add_options --with-system-png
ac_add_options --with-system-nspr
ac_add_options --with-system-nss
ac_add_options --enable-system-ffi
ac_add_options --enable-system-pixman
ac_add_options --enable-alsa
2021-04-10 16:28:56 +02:00
ac_add_options --enable-optimize=-O2
ac_add_options --enable-linker=lld
ac_add_options --enable-release
2021-04-10 16:28:56 +02:00
ac_add_options --enable-rust-simd
2018-12-26 12:53:28 +01:00
ac_add_options --enable-official-branding
ac_add_options --with-distribution-id=nu.crux
ac_add_options --disable-debug
2021-04-10 16:28:56 +02:00
ac_add_options --disable-debug-symbols
ac_add_options --disable-tests
2018-12-26 12:53:28 +01:00
ac_add_options --disable-updater
ac_add_options --disable-crashreporter
ac_add_options --disable-necko-wifi
ac_add_options --disable-pulseaudio
ac_add_options --enable-calendar
2021-04-10 16:28:56 +02:00
ac_add_options --disable-elf-hack
2018-12-26 12:53:28 +01:00
EOF
2020-04-12 02:42:48 +02:00
[[ -e '/usr/bin/ccache' ]] && echo 'ac_add_options --enable-ccache' >> .mozconfig
2021-04-10 16:28:56 +02:00
export PYTHON=/usr/bin/python3
export RUSTFLAGS="$RUSTFLAGS -C debuginfo=0"
export CC=clang CXX=clang++ AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib
2018-12-26 12:53:28 +01:00
export MOZ_MAKE_FLAGS="-j ${JOBS-1}"
export MOZBUILD_STATE_PATH="$PKGMK_SOURCE_DIR/.mozbuild"
2020-04-12 02:42:48 +02:00
export MOZ_NOSPAM=1
2018-12-26 12:53:28 +01:00
./mach build
DESTDIR=$PKG ./mach install
install -d $PKG/usr/share/pixmaps
ln -s /usr/lib/thunderbird/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/thunderbird_default48.png
install -D -m 0644 $SRC/$name.desktop $PKG/usr/share/applications/$name.desktop
find $PKG -iname '*README*' -delete
#rm -r $PKG/usr/{include,lib/thunderbird-devel,share/idl}
2021-02-06 04:42:26 +01:00
install -d $PKG/etc/revdep.d
echo "/usr/lib/thunderbird" > $PKG/etc/revdep.d/$name
2018-12-26 12:53:28 +01:00
}