Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: firedragon-bin #6949

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packagelist
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ feroxbuster-bin
ffmpeg4.4
ffnvcodec-headers
ffsend-bin
firedragon-bin
firefox-arm64-deb
firefox-bin
firefox-developer-edition-bin
Expand Down
11 changes: 11 additions & 0 deletions packages/firedragon-bin/.SRCINFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
pkgbase = firedragon-bin
gives = firedragon
pkgver = 11.22.0-2
pkgdesc = FireDragon is a browser based on the excellent Floorp browser
arch = amd64
maintainer = James Ed Randson <[email protected]>
repology = project: firedragon
source = https://gitlab.com/garuda-linux/firedragon/builder/-/releases/v11.22.0-2/downloads/firedragon-v11.22.0-2.linux-x86_64.tar.zst
sha256sums = bc5200c9fefd86c8d619cc18e9c54e5a6ba764af13d572d7c3f38e98c59c16e0

pkgname = firedragon-bin
36 changes: 36 additions & 0 deletions packages/firedragon-bin/firedragon-bin.pacscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
pkgname="firedragon-bin"
gives="firedragon"
arch=('amd64')
pkgver="11.22.0-2"
repology=("project: ${gives}")
pkgdesc="FireDragon is a browser based on the excellent Floorp browser"
maintainer=("James Ed Randson <[email protected]>")
source=("https://gitlab.com/garuda-linux/${gives}/builder/-/releases/v${pkgver}/downloads/${gives}-v${pkgver}.linux-x86_64.tar.zst")
sha256sums=("bc5200c9fefd86c8d619cc18e9c54e5a6ba764af13d572d7c3f38e98c59c16e0")

package() {
cd "${srcdir}"
mkdir -p "${pkgdir}/lib/firedragon"
tar --strip-components=1 -xvf "${srcdir}/${gives}-v${pkgver}.linux-x86_64.tar.zst" -C "${pkgdir}/lib/firedragon"
chmod +x "${pkgdir}/lib/firedragon/firedragon"
chmod +x "${pkgdir}/lib/firedragon/firedragon-bin"
mkdir -p "${pkgdir}/usr/share/applications/"
echo '[Desktop Entry]
Name=Firedragon
Comment=Web Browser
Exec=/lib/firedragon/firedragon %u
Terminal=false
Type=Application
Icon=/lib/firedragon/browser/chrome/icons/default/default128.png
Categories=Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;
StartupNotify=true
Actions=Private;

[Desktop Action Private]
Exec=/lib/firedragon/firedragon --private-window %u
Name=Open in private mode' | tee "${pkgdir}/usr/share/applications/firedragon.desktop" > /dev/null
mkdir -p "${pkgdir}/usr/bin"
ln -sf "/lib/firedragon/firedragon-bin" "${pkgdir}/usr/bin/firedragon-bin"
ln -sf "/lib/firedragon/firedragon" "${pkgdir}/usr/bin/firedragon"
}
12 changes: 12 additions & 0 deletions srclist
Original file line number Diff line number Diff line change
Expand Up @@ -2938,6 +2938,18 @@ pkgbase = ffsend-bin

pkgname = ffsend-bin
---
pkgbase = firedragon-bin
gives = firedragon
pkgver = 11.22.0-2
pkgdesc = FireDragon is a browser based on the excellent Floorp browser
arch = amd64
maintainer = James Ed Randson <[email protected]>
repology = project: firedragon
source = https://gitlab.com/garuda-linux/firedragon/builder/-/releases/v11.22.0-2/downloads/firedragon-v11.22.0-2.linux-x86_64.tar.zst
sha256sums = bc5200c9fefd86c8d619cc18e9c54e5a6ba764af13d572d7c3f38e98c59c16e0

pkgname = firedragon-bin
---
pkgbase = firefox-arm64-deb
gives = firefox
pkgver = 134.0.1+build1
Expand Down
Loading