-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update firefox-developer-edition-bin.pacscript (Update into 134.0b9)
- Loading branch information
1 parent
47f05f7
commit 0f45429
Showing
1 changed file
with
6 additions
and
11 deletions.
There are no files selected for viewing
17 changes: 6 additions & 11 deletions
17
packages/firefox-developer-edition-bin/firefox-developer-edition-bin.pacscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,27 @@ | ||
pkgname="firefox-developer-edition-bin" | ||
maintainer=("Oren Klopfer <[email protected]>" "James Ed Randson <[email protected]>") | ||
pkgver="134.0b9" | ||
gives="firefox-developer-edition" | ||
pkgver="134.0b7" | ||
arch=("amd64") | ||
pkgdesc="The browser made for developers. All the latest developer tools in beta, plus experimental features like the Multi-line Console Editor and WebSocket Inspector." | ||
breaks=("${gives}" "${gives}-git" "${gives}-deb" "${gives}-app") | ||
url="https://www.mozilla.org/en-US/firefox/developer/" | ||
maintainer=("Oren Klopfer <[email protected]>" "James Ed Randson <[email protected]>") | ||
source=( | ||
"https://download-installer.cdn.mozilla.net/pub/devedition/releases/${pkgver}/linux-x86_64/en-US/firefox-${pkgver}.tar.bz2" | ||
"${gives}.desktop" | ||
"${gives}.png::https://www.mozilla.org/media/img/structured-data/logo-firefox-developer.8aedc8028e4d.png" | ||
) | ||
url='https://www.mozilla.org/en-US/firefox/developer/' | ||
breaks=("${gives}" "${gives}-git" "${gives}-deb" "${gives}-app") | ||
sha256sums=( | ||
"dfa42ba6a09deb378741f53f814983bce2e837068c8f63a29f2f74bd47ee934b" | ||
"ec15a5427a9ed63289e54808e56b3ce4283da7a8249db15a4d715aa8c78f6ce7" | ||
"SKIP" | ||
"SKIP" | ||
) | ||
arch=("amd64") | ||
repology=("project: firefox" "visiblename: firefox-developer-edition" "status: devel") | ||
|
||
package() { | ||
cd "${srcdir}" | ||
# Make dirs and assign permissions | ||
mkdir -p "${pkgdir}/opt/firefox-developer-edition" | ||
cp -r firefox/* "${pkgdir}/opt/firefox-developer-edition" | ||
|
||
# Install the icon for the desktop file | ||
install -Dm644 "${srcdir}/${gives}.png" "${pkgdir}/usr/share/pixmaps/${gives}.png" | ||
|
||
# Install the desktop file | ||
install -Dm644 "${srcdir}/${gives}.desktop" "${pkgdir}/usr/share/applications/${gives}.desktop" | ||
} |