opt/thunderbird-bin/Pkgfile

26 lines
725 B
Plaintext
Raw Normal View History

2018-11-16 00:33:11 +01:00
# Description: Thunderbird binary
2019-08-27 22:12:55 +02:00
# URL: https://www.thunderbird.net/
2018-11-16 00:33:11 +01:00
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: gtk3, dbus-glib
name=thunderbird-bin
2020-01-24 23:54:47 +01:00
version=68.4.2
2019-09-28 18:01:53 +02:00
release=1
2019-09-13 22:17:07 +02:00
source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/linux-x86_64/en-US/thunderbird-$version.tar.bz2 \
policies.json)
2018-11-16 00:33:11 +01:00
build() {
cd thunderbird
install -d $PKG/usr/{lib,bin}
mv $SRC/thunderbird $PKG/usr/lib/thunderbird
ln -s /usr/lib/thunderbird/thunderbird $PKG/usr/bin/thunderbird
2019-09-13 22:17:07 +02:00
# Disable autoupdate
install -m644 $SRC/policies.json $PKG/usr/lib/thunderbird/distribution/
2018-11-16 00:33:11 +01:00
mkdir -p $PKG/etc/revdep.d
2019-03-21 21:01:08 +01:00
echo "/usr/lib/thunderbird" > $PKG/etc/revdep.d/thunderbird-bin
2018-11-16 00:33:11 +01:00
}