Search Criteria
Package Details: icecat-bin 115.17.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/icecat-bin.git (read-only, click to copy) |
---|---|
Package Base: | icecat-bin |
Description: | GNU version of the Firefox ESR browser |
Upstream URL: | https://koji.fedoraproject.org/koji/packageinfo?packageID=19055 |
Licenses: | MPL-2.0 |
Conflicts: | icecat |
Provides: | icecat |
Submitter: | xiota |
Maintainer: | xiota |
Last Packager: | xiota |
Votes: | 4 |
Popularity: | 0.61 |
First Submitted: | 2024-01-28 04:43 (UTC) |
Last Updated: | 2024-11-03 21:02 (UTC) |
Dependencies (6)
- alsa-lib
- dbus-glib
- gtk3 (gtk3-no_deadkeys_underlineAUR, gtk3-classicAUR, gtk3-classic-xfceAUR, gtk3-patched-filechooser-icon-viewAUR)
- libvpx (libvpx-full-gitAUR, libvpx-gitAUR)
- nspr (nspr-hgAUR)
- nss (nss-hgAUR)
Required by (1)
- icecat-arkenfox-autoconfig (requires icecat)
Latest Comments
flatmoll commented on 2024-08-31 16:15 (UTC) (edited on 2024-08-31 16:16 (UTC) by flatmoll)
Greetings, I think that the RPM has moved from 'tasks' to 'packages'.
File: https://kojipkgs.fedoraproject.org//packages/icecat/115.14.0/1.rh1.fc42/x86_64/icecat-115.14.0-1.rh1.fc42.x86_64.rpm
SHA256 (calculated on this file): 75043ec8b0608e0bd4798030707ef80d0c140905eb94ef85220591e8af7909f4
Info: https://koji.fedoraproject.org/koji/rpminfo?rpmID=39817773
I was able to makepkg with this data. Please confirm my findings and update the PKGBUILD.
exkc commented on 2023-09-26 17:22 (UTC)
i cant replace the original icecat-bin with icecat-rpm
exkc commented on 2023-09-26 17:22 (UTC)
i cant replace the original icecat-bin with icecat-rpm
exkc commented on 2023-09-23 03:04 (UTC)
i guess the original icecat-bin is dead now.Time to replace the original icecat-bin with icecat-rpm
euroarcher commented on 2023-05-14 14:24 (UTC)
https://pkgs.org/download/icecat-x11 here there are more icecat rpms but there is still an error when launching the binary icecat
euroarcher commented on 2023-05-14 10:29 (UTC)
You need to replace fc38 with fc37 in PKBUILD in order to work:
Maintainer : exkc exxxxkc@getgoogleoff.me
Fork from icecat-bin
pkgname=icecat-rpm _pkgname=icecat pkgver=102.5.0 _pkgver=${pkgver}-gnu1 pkgrel=0 pkgdesc="Rpm Binary build (from fedora) of the GNU version of the Mozilla Firefox browser" arch=('i686' 'x86_64' 'aarch64') url="http://www.gnu.org/software/gnuzilla/" license=('GPL' 'MPL' 'LGPL') depends=('gtk2' 'mozilla-common' 'libxt' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'desktop-file-utils' 'hicolor-icon-theme' 'libvpx' 'icu' 'libevent' 'nss' 'hunspell' 'sqlite' 'pango' 'freetype2' 'libxft' 'libx11') makedepends=() provides=('icecat' 'icecat-bin') conflicts=('icecat' 'icecat-bin') replaces=('icecat' 'icecat-bin') source_aarch64=(https://kojipkgs.fedoraproject.org//packages/icecat/102.5.0/1.rh1.fc37/x86_64/icecat-102.5.0-1.rh1.fc37.x86_64.rpm) source_x86_64=(https://kojipkgs.fedoraproject.org//packages/icecat/102.5.0/1.rh1.fc37/x86_64/icecat-102.5.0-1.rh1.fc37.x86_64.rpm) source_i686=(https://kojipkgs.fedoraproject.org//packages/icecat/102.5.0/1.rh1.fc37/i686/icecat-102.5.0-1.rh1.fc37.i686.rpm) source=($_pkgname.desktop $_pkgname-safe.desktop $_pkgname-launcher.sh)
sha256sums=('c44eab35f71dd3028a74632463710d674b2e8a0682e5e887535e3233a3b7bbb3' '190577ad917bccfc89a9bcafbc331521f551b6f54e190bb6216eada48dcb1303' 'b49fe5ba063002ad2cbf5e981b98d08e4157e20f5a4f00971a5f73eeca6ddbba') sha256sums_aarch64=('bdee1a9575df7e9e0a82c42c9242b824a511080cb018966a718ac4a543cfb00f') sha256sums_i686=('1d5bbaef76a70d4a552c7055e9cf51df4bcc9f93fa8fe927ba1e30b1b92ceebb') sha256sums_x86_64=('c1578dc7cf82b4142255b417d2719f52a0afc0af73692755b7167cb559f19b86')
package() { install -d $pkgdir/usr/lib/$_pkgname if [ -d $srcdir/usr/lib64/ ]
then
cp -a $srcdir/usr/lib64/$_pkgname/ $pkgdir/usr/lib/$_pkgname/ else cp -a $srcdir/usr/lib/$_pkgname/ $pkgdir/usr/lib/$_pkgname/ fi install -d $pkgdir/usr/share/applications install -m644 $srcdir/$_pkgname.desktop $pkgdir/usr/share/applications install -m644 $srcdir/$_pkgname-safe.desktop $pkgdir/usr/share/applications install -d $pkgdir/usr/share/icons/hicolor/ install -dm644 $srcdir/usr/share/icons/hicolor/* $pkgdir/usr/share/icons install -d $pkgdir/usr/bin/ install -m755 $srcdir/$_pkgname-launcher.sh $pkgdir/usr/bin/$_pkgname }