27 lines
771 B
Plaintext
27 lines
771 B
Plaintext
# Description: Thunderbird binary
|
|
# URL: https://www.thunderbird.net/
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
|
# Depends on: gtk3, dbus-glib
|
|
|
|
name=thunderbird-bin
|
|
version=78.5.1
|
|
release=1
|
|
source=(http://ftp.mozilla.org/pub/thunderbird/releases/$version/linux-x86_64/en-US/thunderbird-$version.tar.bz2 \
|
|
policies.json)
|
|
|
|
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
|
|
|
|
# Disable autoupdate
|
|
mkdir $PKG/usr/lib/thunderbird/distribution
|
|
install -m644 $SRC/policies.json $PKG/usr/lib/thunderbird/distribution/
|
|
|
|
mkdir -p $PKG/etc/revdep.d
|
|
echo "/usr/lib/thunderbird" > $PKG/etc/revdep.d/thunderbird-bin
|
|
|
|
}
|