thunderbird-91.2.1
This commit is contained in:
@@ -9,14 +9,60 @@ from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
ObjDir = "build"
|
||||
MOZAPPDIR= "/usr/lib/thunderbird"
|
||||
shelltools.export("SHELL", "/bin/sh")
|
||||
shelltools.export("MACH_USE_SYSTEM_PYTHON", "1")
|
||||
|
||||
locales = "be ca da de el en-GB en-US es-AR es-ES fi fr hr hu it lt nl pl pt-BR pt-PT ro ru sr sv-SE tr uk".split()
|
||||
xpidir = "%s/xpi" % get.workDIR()
|
||||
arch = get.ARCH()
|
||||
ver = ".".join(get.srcVERSION().split(".")[:3])
|
||||
|
||||
def setup():
|
||||
pisitools.dosed(".mozconfig", "##JOBCOUNT##", get.makeJOBS())
|
||||
|
||||
# LOCALE
|
||||
shelltools.system("rm -rf langpack-tb/*/browser/defaults")
|
||||
if not shelltools.isDirectory(xpidir): shelltools.makedirs(xpidir)
|
||||
for locale in locales:
|
||||
shelltools.system("wget -c -P %s http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/%s/linux-%s/xpi/%s.xpi" % (xpidir, ver, arch, locale))
|
||||
|
||||
shelltools.makedirs("langpack-tb")
|
||||
shelltools.system("cp %s/%s.xpi langpack-tb/langpack-%s@thunderbird.mozilla.org.xpi" % (xpidir, locale, locale))
|
||||
#shelltools.makedirs("langpack-tb/langpack-%s@thunderbird.mozilla.org" % locale)
|
||||
#shelltools.system("unzip -uo %s/%s.xpi -d langpack-tb/langpack-%s@thunderbird.mozilla.org" % (xpidir, locale, locale))
|
||||
|
||||
shelltools.makedirs(ObjDir)
|
||||
shelltools.cd(ObjDir)
|
||||
shelltools.system("../mach configure")
|
||||
|
||||
def build():
|
||||
shelltools.cd(ObjDir)
|
||||
shelltools.system("../mach build")
|
||||
shelltools.system("../mach buildsymbols")
|
||||
|
||||
def install():
|
||||
pisitools.insinto("/opt/thunderbird", "*")
|
||||
shelltools.system("mkdir -p %s/usr/bin" % get.installDIR())
|
||||
#shelltools.system("ln -s /opt/thunderbird/thunderbird /usr/bin/thunderbird" )
|
||||
pisitools.dosym("/opt/thunderbird/thunderbird","/usr/bin/thunderbird")
|
||||
for i in ("16", "22", "24", "32", "48", "64", "128", "256"):
|
||||
pisitools.dodir("/usr/share/icons/hicolor/%sx%s/apps" % (i, i))
|
||||
pisitools.domove("/opt/thunderbird/chrome/icons/default/default%s.png" % (i), "/usr/share/icons/hicolor/%sx%s/apps" % (i, i),"thunderbird.png")
|
||||
# Use system certificates
|
||||
pisitools.dodir("/usr/lib")
|
||||
shelltools.system("ln -s %s/opt/thunderbird/libnssckbi.so %s/usr/lib/libnssckbi.so" % (get.installDIR(), get.installDIR()))
|
||||
shelltools.cd(ObjDir)
|
||||
shelltools.system("DESTDIR=%s ../mach install " % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
|
||||
# Install fix language packs
|
||||
pisitools.insinto("/usr/lib/thunderbird/extensions", "langpack-tb/*")
|
||||
|
||||
# Install icons
|
||||
pisitools.insinto("/usr/share/pixmaps", "comm/mail/branding/thunderbird/default256.png", "thunderbird.png")
|
||||
pisitools.insinto("%s/icons" % MOZAPPDIR, "comm/mail/branding/thunderbird/default16.png")
|
||||
|
||||
for s in (16, 22, 24, 32, 48, 64, 128, 256):
|
||||
pisitools.insinto("/usr/share/icons/hicolor/%dx%d/apps" % (s,s), "comm/mail/branding/thunderbird/default%d.png" % s, "thunderbird.png")
|
||||
|
||||
# We don't want the development stuff
|
||||
#pisitools.removeDir("/usr/lib/thunderbird-devel*")
|
||||
#pisitools.removeDir("/usr/share/idl")
|
||||
#pisitools.removeDir("/usr/include")
|
||||
|
||||
# Install docs
|
||||
pisitools.dodoc("README*", "LICENSE")
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
mk_add_options MOZ_MAKE_FLAGS="##JOBCOUNT##"
|
||||
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --enable-release
|
||||
#ac_add_options --enable-gold
|
||||
ac_add_options --enable-hardening
|
||||
ac_add_options --enable-optimize
|
||||
ac_add_options --enable-rust-simd
|
||||
|
||||
ac_add_options --disable-elf-hack
|
||||
ac_add_options --enable-update-channel=release
|
||||
ac_add_options --with-distribution-id=org.pisilinux
|
||||
|
||||
ac_add_options --enable-official-branding
|
||||
|
||||
ac_add_options --with-system-nspr
|
||||
#ac_add_options --with-system-nss
|
||||
#ac_add_options --with-system-icu
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-zlib
|
||||
ac_add_options --with-system-bz2
|
||||
ac_add_options --with-system-libevent
|
||||
ac_add_options --with-system-libvpx
|
||||
ac_add_options --enable-system-ffi
|
||||
ac_add_options --enable-system-pixman
|
||||
|
||||
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --enable-application=comm/mail
|
||||
#ac_add_options --enable-timeline
|
||||
|
||||
|
||||
ac_add_options --enable-alsa
|
||||
ac_add_options --enable-openpgp
|
||||
ac_add_options --disable-jack
|
||||
ac_add_options --disable-crashreporter
|
||||
ac_add_options --disable-updater
|
||||
|
||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||
ac_add_options --allow-addon-sideload
|
||||
BIN
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
diff -upr comm-esr31.orig/mozilla/config/baseconfig.mk comm-esr31/mozilla/config/baseconfig.mk
|
||||
--- comm-esr31.orig/mozilla/config/baseconfig.mk 2014-07-22 09:44:22.000000000 +0300
|
||||
+++ comm-esr31/mozilla/config/baseconfig.mk 2014-07-22 09:46:45.000000000 +0300
|
||||
@@ -4,7 +4,7 @@
|
||||
# whether a normal build is happening or whether the check is running.
|
||||
includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
|
||||
+installdir = $(libdir)/$(MOZ_APP_NAME)
|
||||
sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
|
||||
ifndef TOP_DIST
|
||||
TOP_DIST = dist
|
||||
@@ -1,173 +1,140 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Thunderbird
|
||||
Comment=Send and receive mail with Thunderbird
|
||||
Comment[ast]=Lleer y escribir corréu electrónicu
|
||||
Comment[ca]=Llegiu i escriviu correu
|
||||
Comment[cs]=Čtení a psaní pošty
|
||||
Comment[da]=Skriv/læs e-post/nyhedsgruppe med Mozilla Thunderbird
|
||||
Comment[de]=E-Mails und Nachrichten mit Thunderbird lesen und schreiben
|
||||
Comment[el]=Διαβάστε και γράψτε γράμματα με το Mozilla Thunderbird
|
||||
Comment[es]=Lea y escriba correos y noticias con Thunderbird
|
||||
Comment[fi]=Lue ja kirjoita sähköposteja
|
||||
Comment[fr]=Lire et écrire des courriels
|
||||
Comment[gl]=Lea e escriba correo electrónico
|
||||
Comment[he]=קריאה/כתיבה של דוא״ל/חדשות באמצעות Mozilla Thunderbird
|
||||
Comment[hr]=Čitajte/šaljite e-poštu s Thunderbird
|
||||
Comment[hu]=Levelek írása és olvasása a Thunderbirddel
|
||||
Comment[it]=Per leggere e scrivere email
|
||||
Comment[ja]=メールの読み書き
|
||||
Comment[ko]=Mozilla Thunderbird 메일/뉴스 읽기 및 쓰기 클라이언트
|
||||
Comment[nl]=E-mail/nieuws lezen en schrijven met Mozilla Thunderbird
|
||||
Comment[pl]=Czytanie i wysyłanie e-maili
|
||||
Comment[pt_BR]=Leia e escreva suas mensagens
|
||||
Comment[ru]=Читайте и пишите письма
|
||||
Comment[sk]=Čítajte a píšte poštu pomocou programu Thunderbird
|
||||
Comment[sv]=Läs och skriv e-post
|
||||
Comment[ug]=ئېلخەت ۋە خەۋەرلەرنى Mozilla Thunderbird دا كۆرۈش ۋە يېزىش
|
||||
Comment[uk]=Читання та написання листів
|
||||
Comment[vi]=Đọc và soạn thư điện tử
|
||||
Comment[zh_CN]=阅读邮件或新闻
|
||||
Comment[zh_TW]=以 Mozilla Thunderbird 讀寫郵件或新聞
|
||||
GenericName=Mail Client
|
||||
GenericName[ast]=Client de correu
|
||||
GenericName[ca]=Client de correu
|
||||
GenericName[cs]=Poštovní klient
|
||||
GenericName[da]=E-postklient
|
||||
GenericName[de]=E-Mail-Anwendung
|
||||
GenericName[el]=Λογισμικό αλληλογραφίας
|
||||
GenericName[es]=Cliente de correo
|
||||
GenericName[fi]=Sähköpostiohjelma
|
||||
GenericName[fr]=Client de messagerie
|
||||
GenericName[gl]=Cliente de correo electrónico
|
||||
GenericName[he]=לקוח דוא״ל
|
||||
GenericName[hr]=Klijent e-pošte
|
||||
GenericName[hu]=Levelezőkliens
|
||||
GenericName[it]=Client email
|
||||
GenericName[ja]=電子メールクライアント
|
||||
GenericName[ko]=메일 클라이언트
|
||||
GenericName[nl]=E-mailprogramma
|
||||
GenericName[pl]=Klient poczty
|
||||
GenericName[pt_BR]=Cliente de E-mail
|
||||
GenericName[ru]=Почтовый клиент
|
||||
GenericName[sk]=Poštový klient
|
||||
GenericName[ug]=ئېلخەت دېتالى
|
||||
GenericName[uk]=Поштова програма
|
||||
GenericName[vi]=Phần mềm khách quản lý thư điện tử
|
||||
GenericName[zh_CN]=邮件新闻客户端
|
||||
GenericName[zh_TW]=郵件用戶端
|
||||
Exec=/usr/bin/thunderbird %u
|
||||
Name[ar]=موزلا ثندَربرد
|
||||
Name[bg]=Мозила Пощальон
|
||||
Name[bn]=মোজিলা থান্ডারবার্ড
|
||||
Name[br]=Mozilla Thunderbird
|
||||
Name[bs]=Mozilla Thunderbird
|
||||
Name[ca]=Mozilla Thunderbird
|
||||
Name[cs]=Mozilla Thunderbird
|
||||
Name[cy]=Mozilla Thunderbird
|
||||
Name[da]=Mozilla Thunderbird
|
||||
Name[de]=Mozilla Thunderbird
|
||||
Name[el]=Mozilla Thunderbird
|
||||
Name[eo]=Mozilo Thunderbird
|
||||
Name[es]=Mozilla Thunderbird
|
||||
Name[et]=Mozilla Thunderbird
|
||||
Name[eu]=Mozilla Thunderbird
|
||||
Name[fa]=پرندهصاعقه موزیلا
|
||||
Name[fi]=Mozilla Thunderbird
|
||||
Name[fr]=Mozilla Thunderbird (courrier électronique)
|
||||
Name[gl]=Mozilla Thunderbird
|
||||
Name[he]=Mozilla Thunderbird
|
||||
Name[hi]=मोज़िला थंडरबर्ड
|
||||
Name[hu]=Mozilla Thunderbird
|
||||
Name[id]=Mozilla Thunderbird
|
||||
Name[is]=Mozilla Thunderbird
|
||||
Name[it]=Mozilla Thunderbird
|
||||
Name[ja]=Mozilla Thunderbird
|
||||
Name[ko]=모질라 썬더버드
|
||||
Name[ky]=Mozilla Thunderbird
|
||||
Name[mk]=Mozilla Thunderbird
|
||||
Name[mn]=Мозилла түндэрбөрд
|
||||
Name[nb]=Mozilla Thunderbird
|
||||
Name[nl]=Mozilla Thunderbird
|
||||
Name[nn]=Mozilla Thunderbird
|
||||
Name[pl]=Mozilla Thunderbird
|
||||
Name[pt]=Mozilla Thunderbird
|
||||
Name[pt_BR]=Mozilla Thunderbird
|
||||
Name[ro]=Mozilla Thunderbird
|
||||
Name[ru]=Mozilla Thunderbird
|
||||
Name[sc]=Mozilla Thunderbird
|
||||
Name[sk]=Mozilla Thunderbird
|
||||
Name[sl]=Mozilla Thunderbird
|
||||
Name[sv]=Mozilla Thunderbird
|
||||
Name[tg]=Мозиллаи Thunderbird
|
||||
Name[th]=Mozilla Thunderbird
|
||||
Name[tl]=Mozilla Thunderbird
|
||||
Name[tr]=Mozilla Thunderbird
|
||||
Name[uk]=Mozilla Thunderbird
|
||||
Name[uz]=Mozilla Thunderbird
|
||||
Name[uz@cyrillic]=Mozilla Thunderbird
|
||||
Name[vi]=Mozilla Thunderbird
|
||||
Name[wa]=Mozilla Thunderbird
|
||||
Name[zh_CN]=Mozilla Thunderbird 电子邮件
|
||||
Name[zh_TW]=Mozilla Thunderbird
|
||||
GenericName=Mail & News Reader
|
||||
GenericName[ar]=بريد/أخبار
|
||||
GenericName[bg]=Поща/Новини
|
||||
GenericName[br]=Posteloù/keleier
|
||||
GenericName[cs]=Pošta/Diskusní skupiny
|
||||
GenericName[cy]=E-bost/Newyddion
|
||||
GenericName[da]=E-post/Nyheder
|
||||
GenericName[de]=E-Mail/News
|
||||
GenericName[el]=Αλληλογραφία/Νέα
|
||||
GenericName[es]=Correo/Noticias
|
||||
GenericName[et]=E-post/Uudistegrupid
|
||||
GenericName[eu]=Posta/Berriak
|
||||
GenericName[fi]=Sähköposti / uutisryhmät
|
||||
GenericName[fr]=Courriel/Nouvelles
|
||||
GenericName[gl]=Correo/Novas
|
||||
GenericName[he]=דואר/קבוצות דיון
|
||||
GenericName[hu]=Levelezés/hírek
|
||||
GenericName[id]=Mail/Berita
|
||||
GenericName[is]=Póstur/Fréttir
|
||||
GenericName[it]=Mail/News
|
||||
GenericName[ja]=メール/ニュース
|
||||
GenericName[ky]=Почта/Жаңылыктар
|
||||
GenericName[mk]=Пошта/Вести
|
||||
GenericName[nb]=E-post/Njus
|
||||
GenericName[nl]=E-mail/nieuws
|
||||
GenericName[nn]=E-post og temagrupper
|
||||
GenericName[pl]=Poczta/wiadomości
|
||||
GenericName[pt]=Correio/Noticias
|
||||
GenericName[pt_BR]=E-mail/Notícias
|
||||
GenericName[ro]=Poștă/Știri
|
||||
GenericName[ru]=Почта/Новости
|
||||
GenericName[sl]=Pošta/Novičarske skupine
|
||||
GenericName[sv]=E-post/Nyheter
|
||||
GenericName[tr]=Posta/Haber
|
||||
GenericName[uk]=Пошта/Новини
|
||||
GenericName[uz]=Xat-xabar/Yangiliklar
|
||||
GenericName[uz@cyrillic]=Хат-хабар/Янгиликлар
|
||||
GenericName[zh_CN]=邮件/新闻
|
||||
GenericName[zh_TW]=郵件/新聞
|
||||
Comment=Mail Client & News Reader
|
||||
Comment[ar]=عميل بريد وأخبار
|
||||
Comment[bg]=Пощенски и новинарски клиент
|
||||
Comment[bs]=E-mail i news klijent
|
||||
Comment[cs]=Klient pro poštu a diskusní skupiny
|
||||
Comment[cy]=Rhaglen E-bost a Newyddion
|
||||
Comment[da]=E-post- og nyhedsklient
|
||||
Comment[de]=E-Mail und Nachrichten Client
|
||||
Comment[el]=Πελάτης Αλληλογραφίας και Νέων
|
||||
Comment[es]=Cliente de correo electrónico y noticias
|
||||
Comment[et]=E-posti ja uudisteklient
|
||||
Comment[eu]=Posta eta Berri bezeroa
|
||||
Comment[fi]=Sähköpostin ja uutisryhmien luku- ja kirjoitusohjelma
|
||||
Comment[fr]=Client messagerie et news
|
||||
Comment[gl]=Cliente de Correo-e e Novas
|
||||
Comment[he]=לקוח חדשות ודוא"ל
|
||||
Comment[hu]=Levelezőprogram és hírolvasó
|
||||
Comment[id]=Klien Mail dan Berita
|
||||
Comment[is]=Póst og frétta-forrit
|
||||
Comment[it]=Client per posta elettronica e news
|
||||
Comment[ja]=メールクライアントとニュースリーダー
|
||||
Comment[ky]=Почта жана Жаңылыктар клиентти
|
||||
Comment[mk]=Клиент за е-пошта и вести
|
||||
Comment[nb]=E-post- og nyhetsklient
|
||||
Comment[nl]=Mail- en newsprogramma
|
||||
Comment[nn]=E-post og temagruppeprogram
|
||||
Comment[pl]=Klient pocztowy oraz klient grup dyskusyjnych
|
||||
Comment[pt]=Cliente de Correio e Notícias
|
||||
Comment[pt_BR]=Cliente de E-mail e Notícias
|
||||
Comment[ro]=Client de poștă și știri
|
||||
Comment[ru]=Клиент чтения новостей и почты
|
||||
Comment[sl]=Odjemalec za e-pošto in novice
|
||||
Comment[sv]=E-post och Nyhets-klient
|
||||
Comment[tr]=Posta ve Haber İstemcisi
|
||||
Comment[uk]=Поштовий клієнт та клієнт новин
|
||||
Comment[zh_CN]=邮件和新闻客户程序
|
||||
Comment[zh_TW]=郵件與新聞用戶端
|
||||
TryExec=thunderbird
|
||||
Exec=thunderbird %u
|
||||
Icon=thunderbird
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=thunderbird
|
||||
Categories=Network;Email;
|
||||
MimeType=message/rfc822;x-scheme-handler/mailto;application/x-xpinstall;
|
||||
StartupNotify=true
|
||||
Actions=ComposeMessage;OpenAddressBook;
|
||||
|
||||
[Desktop Action ComposeMessage]
|
||||
Name=Write new message
|
||||
Name[ar]=اكتب رسالة جديدة
|
||||
Name[ast]=Redactar mensaxe nuevu
|
||||
Name[be]=Напісаць новы ліст
|
||||
Name[bg]=Съставяне на ново съобщение
|
||||
Name[br]=Skrivañ ur gemennadenn nevez
|
||||
Name[ca]=Escriu un missatge nou
|
||||
Name[cs]=Napsat novou zprávu
|
||||
Name[da]=Skriv en ny meddelelse
|
||||
Name[de]=Neue Nachricht verfassen
|
||||
Name[el]=Σύνταξη νέου μηνύματος
|
||||
Name[es_AR]=Escribir un nuevo mensaje
|
||||
Name[es_ES]=Redactar nuevo mensaje
|
||||
Name[et]=Kirjuta uus kiri
|
||||
Name[eu]=Idatzi mezu berria
|
||||
Name[fi]=Kirjoita uusi viesti
|
||||
Name[fr]=Rédiger un nouveau message
|
||||
Name[fy_NL]=Skriuw in nij berjocht
|
||||
Name[ga_IE]=Scríobh teachtaireacht nua
|
||||
Name[gd]=Sgrìobh teachdaireachd ùr
|
||||
Name[gl]=Escribir unha nova mensaxe
|
||||
Name[he]=כתיבת הודעה חדשה
|
||||
Name[hr]=Piši novu poruku
|
||||
Name[hu]=Új üzenet írása
|
||||
Name[hy_AM]=Գրել նոր նամակ
|
||||
Name[is]=SKrifa nýjan póst
|
||||
Name[it]=Scrivi nuovo messaggio
|
||||
Name[ja]=新しいメッセージを作成する
|
||||
Name[ko]=새 메시지 작성
|
||||
Name[lt]=Rašyti naują laišką
|
||||
Name[nb_NO]=Skriv ny melding
|
||||
Name[nl]=Nieuw bericht aanmaken
|
||||
Name[nn_NO]=Skriv ny melding
|
||||
Name[pl]=Nowa wiadomość
|
||||
Name[pt_BR]=Nova mensagem
|
||||
Name[pt_PT]=Escrever nova mensagem
|
||||
Name[rm]=Scriver in nov messadi
|
||||
Name[ro]=Scrie un mesaj nou
|
||||
Name[ru]=Создать новое сообщение
|
||||
Name[si]=නව ලිපියක් ලියන්න
|
||||
Name[sk]=Nová e-mailová správa
|
||||
Name[sl]=Sestavi novo sporočilo
|
||||
Name[sq]=Shkruani mesazh të ri
|
||||
Name[sr]=Писање нове поруке
|
||||
Name[sv_SE]=Skriv ett nytt meddelande
|
||||
Name[ta_LK]=புதிய செய்தியை எழுதுக
|
||||
Name[tr]=Yeni ileti yaz
|
||||
Name[uk]=Написати нового листа
|
||||
Name[vi]=Viết thư mới
|
||||
Name[zh_CN]=编写新消息
|
||||
Name[zh_TW]=寫一封新訊息
|
||||
Exec=/usr/bin/thunderbird -compose
|
||||
|
||||
[Desktop Action OpenAddressBook]
|
||||
Name=Open address book
|
||||
Name[ar]=افتح دفتر العناوين
|
||||
Name[ast]=Abrir llibreta de direiciones
|
||||
Name[be]=Адкрыць адрасную кнігу
|
||||
Name[bg]=Отваряне на адресник
|
||||
Name[br]=Digeriñ ur c'harned chomlec'hioù
|
||||
Name[ca]=Obre la llibreta d'adreces
|
||||
Name[cs]=Otevřít Adresář
|
||||
Name[da]=Åbn adressebog
|
||||
Name[de]=Adressbuch öffnen
|
||||
Name[el]=Άνοιγμα ευρετηρίου διευθύνσεων
|
||||
Name[es_AR]=Abrir libreta de direcciones
|
||||
Name[es_ES]=Abrir libreta de direcciones
|
||||
Name[et]=Ava aadressiraamat
|
||||
Name[eu]=Ireki helbide-liburua
|
||||
Name[fi]=Avaa osoitekirja
|
||||
Name[fr]=Ouvrir un carnet d'adresses
|
||||
Name[fy_NL]=Iepenje adresboek
|
||||
Name[ga_IE]=Oscail leabhar seoltaí
|
||||
Name[gd]=Fosgail leabhar-sheòlaidhean
|
||||
Name[gl]=Abrir a axenda de enderezos
|
||||
Name[he]=פתיחת ספר כתובות
|
||||
Name[hr]=Otvori adresar
|
||||
Name[hu]=Címjegyzék megnyitása
|
||||
Name[hy_AM]=Բացել Հասցեագիրքը
|
||||
Name[is]=Opna nafnaskrá
|
||||
Name[it]=Apri rubrica
|
||||
Name[ja]=アドレス帳を開く
|
||||
Name[ko]=주소록 열기
|
||||
Name[lt]=Atverti adresų knygą
|
||||
Name[nb_NO]=Åpne adressebok
|
||||
Name[nl]=Adresboek openen
|
||||
Name[nn_NO]=Opne adressebok
|
||||
Name[pl]=Książka adresowa
|
||||
Name[pt_BR]=Catálogo de endereços
|
||||
Name[pt_PT]=Abrir livro de endereços
|
||||
Name[rm]=Avrir il cudeschet d'adressas
|
||||
Name[ro]=Deschide agenda de contacte
|
||||
Name[ru]=Открыть адресную книгу
|
||||
Name[si]=ලිපින පොත විවෘත කරන්න
|
||||
Name[sk]=Otvoriť adresár
|
||||
Name[sl]=Odpri adressar
|
||||
Name[sq]=Hapni libër adresash
|
||||
Name[sr]=Отвори адресар
|
||||
Name[sv_SE]=Öppna adressboken
|
||||
Name[ta_LK]=முகவரி பத்தகத்தை திறக்க
|
||||
Name[tr]=Adres defterini aç
|
||||
Name[uk]=Відкрити адресну книгу
|
||||
Name[vi]=Mở sổ địa chỉ
|
||||
Name[zh_CN]=打开通讯录
|
||||
Name[zh_TW]=開啟通訊錄
|
||||
Exec=/usr/bin/thunderbird -addressbook
|
||||
Categories=Application;Network;Email;
|
||||
MimeType=message/rfc822;x-scheme-handler/mailto;
|
||||
@@ -6,4 +6,4 @@ pref("mail.shell.checkDefaultMail", false);
|
||||
|
||||
// Don't disable our bundled extensions in the application directory
|
||||
pref("extensions.autoDisableScopes", 11);
|
||||
pref("extensions.shownSelectionUI", true);
|
||||
pref("extensions.shownSelectionUI", true);
|
||||
@@ -8,33 +8,56 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MPL-1.1</License>
|
||||
<License>NPL-1.1</License>
|
||||
<License>GPLv2+</License>
|
||||
<Icon>thunderbird</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>The Stand-Alone Mozilla Mail Component</Summary>
|
||||
<Description>Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform.</Description>
|
||||
<Archive sha1sum="f9d3dfa8df4bc3fcd789663e5acb301ed2729d55" type="tarbz2">https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/91.2.1/linux-x86_64/tr/thunderbird-91.2.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="d33f2682e07a4b9c713781cfdf5c6a93279eb117" type="tarxz">http://ftp.mozilla.org/pub/thunderbird/releases/91.2.1/source/thunderbird-91.2.1.source.tar.xz</Archive>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target=".mozconfig">pisilinux/mozconfig</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency>autoconf213</Dependency>
|
||||
<Dependency>wget</Dependency>
|
||||
<Dependency>yasm</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>nss-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libXi-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>libXfixes-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libXcursor-devel</Dependency>
|
||||
<Dependency>libXdamage-devel</Dependency>
|
||||
<Dependency>libXrender-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
<Dependency>libffi-devel</Dependency>
|
||||
<Dependency>libXcomposite-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>pixman-devel</Dependency>
|
||||
<Dependency>dbus-glib-devel</Dependency>
|
||||
<Dependency>hunspell-devel</Dependency>
|
||||
<Dependency>libevent-devel</Dependency>
|
||||
<Dependency>gconf-devel</Dependency>
|
||||
<Dependency>libvpx-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>startup-notification-devel</Dependency>
|
||||
<Dependency>cbindgen</Dependency>
|
||||
<Dependency>rust</Dependency>
|
||||
<Dependency>llvm</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>llvm-clang-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>nodejs</Dependency>
|
||||
<Dependency>libuv-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">thunderbird-install-dir.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
@@ -42,54 +65,416 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libXi</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libXt</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>pixman</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>gconf</Dependency>
|
||||
<Dependency>icu4c</Dependency>
|
||||
<Dependency>hunspell</Dependency>
|
||||
<Dependency>libvpx</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>iconcan</Dependency> <!--for <ICON></ICON>-->
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libevent</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libXcursor</Dependency>
|
||||
<Dependency>libXdamage</Dependency>
|
||||
<Dependency>libXrender</Dependency>
|
||||
<Dependency>libXcomposite</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>startup-notification</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>libffi</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>dbus-glib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/lib/thunderbird</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor/*/apps</Path>
|
||||
<Path fileType="data">/opt</Path>
|
||||
<Path fileType="data">/usr/share/icons/hicolor</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/thunderbird/defaults/preferences/vendor.js">vendor.js</AdditionalFile>
|
||||
<!-- Desktop file -->
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/thunderbird.desktop">thunderbird.desktop</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/opt/defaults/preferences/vendor.js">vendor.js</AdditionalFile>
|
||||
<!-- Notification sound file -->
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/thunderbird/sound.wav">pisilinux/network_mail_thunderbird_files_pisilinux_sound.wav</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-be</Name>
|
||||
<Icon>lang-be</Icon>
|
||||
<IsA>locale:be</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Беларуская мова пакет для Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ca</Name>
|
||||
<Icon>lang-ca</Icon>
|
||||
<IsA>locale:ca</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Arxiu d'idioma català del Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-da</Name>
|
||||
<Icon>lang-da</Icon>
|
||||
<IsA>locale:da</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Dansk sprogpakke til Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-de</Name>
|
||||
<Icon>lang-de</Icon>
|
||||
<IsA>locale:de</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Deutsch Sprachdatei für Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-el</Name>
|
||||
<Icon>lang-el</Icon>
|
||||
<IsA>locale:el</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Ελληνική γλώσσα pack για τον Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-en-US</Name>
|
||||
<Icon>lang-en-US</Icon>
|
||||
<IsA>locale:en_US</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>English language pack for Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-en-GB</Name>
|
||||
<Icon>lang-en-GB</Icon>
|
||||
<IsA>locale:en_GB</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>English language pack for Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-en-GB@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-AR</Name>
|
||||
<Icon>lang-es-AR</Icon>
|
||||
<IsA>locale:es_AR</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquete de idioma español para Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-es-ES</Name>
|
||||
<Icon>lang-es-ES</Icon>
|
||||
<IsA>locale:es</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquete de idioma español para Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fi</Name>
|
||||
<Icon>lang-fi</Icon>
|
||||
<IsA>locale:fi</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Suomen kielen pack for Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-fr</Name>
|
||||
<Icon>lang-fr</Icon>
|
||||
<IsA>locale:fr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Paquet de langue française pour Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hr</Name>
|
||||
<Icon>lang-hr</Icon>
|
||||
<IsA>locale:hr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Hrvatski jezični paket za Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-hu</Name>
|
||||
<Icon>lang-hu</Icon>
|
||||
<IsA>locale:hu</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Magyar nyelvű pack for Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-it</Name>
|
||||
<Icon>lang-it</Icon>
|
||||
<IsA>locale:it</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Language Pack italiano per Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-lt</Name>
|
||||
<Icon>lang-lt</Icon>
|
||||
<IsA>locale:lt</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Lietuvių kalbos paketas Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-nl</Name>
|
||||
<Icon>lang-nl</Icon>
|
||||
<IsA>locale:nl</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Nederlands taalpakket voor Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pl</Name>
|
||||
<Icon>lang-pl</Icon>
|
||||
<IsA>locale:pl</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Polski pakiet językowy dla programu Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-BR</Name>
|
||||
<Icon>lang-pt-BR</Icon>
|
||||
<IsA>locale:pt_BR</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pacote de idioma português para o Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-pt-PT</Name>
|
||||
<Icon>lang-pt-PT</Icon>
|
||||
<IsA>locale:pt</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pacote de idioma português para o Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ro</Name>
|
||||
<Icon>lang-ro</Icon>
|
||||
<IsA>locale:ro</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Pachet de limba română pentru Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-ru</Name>
|
||||
<Icon>lang-ru</Icon>
|
||||
<IsA>locale:ru</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Русский языковый пакет для Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sr</Name>
|
||||
<Icon>lang-sr</Icon>
|
||||
<IsA>locale:sr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Паковање српски језик за Фирефок</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-sv-SE</Name>
|
||||
<Icon>lang-sv-SE</Icon>
|
||||
<IsA>locale:sv_SE</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Svenska språkpaket för Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-tr</Name>
|
||||
<Icon>lang-tr</Icon>
|
||||
<IsA>locale:tr</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Thunderbird için Türkçe dil dosyası</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>thunderbird-lang-uk</Name>
|
||||
<Icon>lang-uk</Icon>
|
||||
<IsA>locale:uk</IsA>
|
||||
<PartOf>system.locale</PartOf>
|
||||
<Summary>Український мовний пакет для Thunderbird</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency releaseFrom="current">thunderbird</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org.xpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2021-10-29</Date>
|
||||
<Update release="66">
|
||||
<Date>2021-10-31</Date>
|
||||
<Version>91.2.1</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2021-04-24</Date>
|
||||
<Version>78.10.0</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-09-21</Date>
|
||||
|
||||
Reference in New Issue
Block a user