diff --git a/firefox-bin/alr.sh b/firefox-bin/alr.sh index e4b45a5..f783fab 100644 --- a/firefox-bin/alr.sh +++ b/firefox-bin/alr.sh @@ -1,29 +1,43 @@ name='firefox-bin' version='143.0.1' -release='1' +release='2' desc='Fast, Private & Safe Web Browser.' desc_ru='Быстрый, конфиденциальный и безопасный веб-браузер.' homepage='https://www.mozilla.org/firefox/' maintainer='Evgeniy Khramov ' maintainer_ru="Евгений Храмов " -architectures=('amd64' '386') +architectures=('amd64') license=('MPL' 'GPL' 'LGPL') provides=('firefox') conflicts=('firefox' 'firefox-git') -deps=('gtk3' +deps=( + 'gtk3' 'libXt' 'mailcap' 'dbus-glib' 'nss' ) -deps_debian=('libgtk-3-dev' +deps_arch=("${deps[@]}") +deps_alt=( + 'gtk3' + 'libXt' + 'mailcap' + 'libdbus-glib' + 'libnss' +) +deps_debian=( + 'libgtk-3-0' 'libxt6' 'mailcap' 'libdbus-glib-1-2' 'libnss3' ) +deps_fedora=("${deps[@]}") +deps_redos=("${deps[@]}") +deps_rhel=("${deps[@]}") +deps_rosa=("${deps[@]}") opt_deps=('ffmpeg: H264/AAC/MP3 decoding' 'NetworkManager: Location detection via available WiFi networks' @@ -49,8 +63,6 @@ fi sources_amd64=("https://download.mozilla.org/?product=firefox-${ver}&os=linux64&lang=ru") checksums_amd64=('SKIP') -sources_386=("https://download.mozilla.org/?product=firefox-${ver}&os=linux32&lang=ru") -checksums_386=('SKIP') options=(!strip) @@ -90,8 +102,8 @@ package() { } files() { - printf '"%s" ' ./opt/firefox/**/* - printf '"%s" ' ./usr/share/icons/hicolor/*/apps/* - echo ./usr/bin/firefox - echo ./usr/share/applications/firefox.desktop + files-find ./opt/firefox + files-find-bin + files-find-share "applications" "firefox.desktop" + files-find-share "icons" }