thunderbird-bin: updated to version 115.8.1

This commit is contained in:
Matt Housh 2024-03-05 15:23:29 -06:00
parent e123ba328c
commit f0331745a0
Signed by: jaeger
GPG Key ID: F9DE89ED1BFADFD7
2 changed files with 22 additions and 20 deletions

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/VJ+Lu00IEnr1Ohd8h95+dHu7whRWbvxYL5gyXytkGHN+y8iCOFXI4yzwsSpvRX2iL7g4K3aUygmQbW3D8pUEA0=
SHA256 (Pkgfile) = c2d52261c5b43ef59ca98d89bdab0fec3d02012b318ca9ad640d16e6e7e85361
RWSE3ohX2g5d/a/QdTX9zQqZe8zlvHdRPJsNenV6PpJoLIvwWDF9ceJXi8dE3O2D9KQqlxOKZ+pXC6kbtqxl/ntWOBXNMB8FPQw=
SHA256 (Pkgfile) = ddbe176b1eb38245c429f2ca19ea8a53da21597ba641471ab96e958cc54f8fd3
SHA256 (.footprint) = fb6d17faf972e295b3b5545f2a09d15697e86231f5802e2a709af00426f4c19c
SHA256 (thunderbird-115.8.0.tar.bz2) = b6a577668c4ddc621fd79c3bd00c01f418da3538abd4f096a8757b849c82a081
SHA256 (thunderbird-115.8.1.tar.bz2) = 4bc8580ca31811dceedc26fd3d28e0d85a5afaada4f061bccd9e06e2ff7f7173
SHA256 (policies.json) = cf856011307f7831d74cdacb4e80b6dceaa49882b8dcba008d527a78764903f4
SHA256 (thunderbird.desktop) = 8e3777e4d0c02418f0ea82240325c9f9b58cf60859b0b180217585e4ab288aba

View File

@ -1,32 +1,34 @@
# Description: Thunderbird binary
# Description: Mozilla Thunderbird binary version
# URL: https://www.thunderbird.net/
# Maintainer: Matt Housh, jaeger at crux dot ninja
# Depends on: gtk3 dbus-glib alsa-lib
name=thunderbird-bin
version=115.8.0
version=115.8.1
release=1
source=(https://ftp.mozilla.org/pub/thunderbird/releases/$version/linux-x86_64/en-US/thunderbird-$version.tar.bz2
policies.json thunderbird.desktop)
policies.json thunderbird.desktop)
build() {
cd thunderbird
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
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
install -d $PKG/usr/lib/thunderbird/distribution
install -m644 $SRC/policies.json $PKG/usr/lib/thunderbird/distribution/
# Disable autoupdate
install -d $PKG/usr/lib/thunderbird/distribution
install -m644 $SRC/policies.json $PKG/usr/lib/thunderbird/distribution/
install -d $PKG/etc/revdep.d
echo "/usr/lib/thunderbird" > $PKG/etc/revdep.d/thunderbird-bin
install -d $PKG/etc/revdep.d
echo "/usr/lib/thunderbird" > $PKG/etc/revdep.d/thunderbird-bin
install -m 0755 -d $PKG/usr/share/pixmaps
ln -s /usr/lib/thunderbird/chrome/icons/default/default32.png \
$PKG/usr/share/pixmaps/thunderbird.png
install -m 0755 -d $PKG/usr/share/pixmaps
ln -s /usr/lib/thunderbird/chrome/icons/default/default32.png \
$PKG/usr/share/pixmaps/thunderbird.png
install -m 0644 -D $SRC/thunderbird.desktop \
$PKG/usr/share/applications/thunderbird.desktop
install -m 0644 -D $SRC/thunderbird.desktop \
$PKG/usr/share/applications/thunderbird.desktop
}
# vim: set ts=4 et: