You are not logged in.
I've modified the PKGBUILD of this Firefox ESR AUR package and I want to install the latest ESR release.
This is my modified PKGBUILD.
I've kept the other files (firefox-esr-safe.desktop, firefox-esr.desktop, firefox-esr.install) as they were verbatim and want to know whether everything's fine.
If I've violated some etiquette by posting this thread, feel free to remove it. ![]()
Last edited by qyprg (2015-12-15 13:20:07)
Offline
provides=('firefox=38.4.0')
replaces=('firefox>=38.4.0)This suggests you want to prevent users from having both firefox ESR and latest version installed.
With only those lines it is possible to have an OLDER firefox version installed.
You also need a conflicts= line,so pacman knows it has to remove firefox when firefox ESR gets installed.
I'd do it like this :
provides=('firefox=38.4.0')
replaces=('firefox')
conflicts=('firefox')Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Online