mirror of
https://aur.archlinux.org/firedragon.git
synced 2024-12-26 04:34:15 +00:00
chore: update firedragon
This commit was automatically generated to reflect changes to this package in another repository. The changelog for this package can be found at https://gitlab.com/garuda-linux/pkgbuilds/-/commits/main/firedragon. Logs of the corresponding pipeline run can be found here: https://gitlab.com/garuda-linux/pkgbuilds/-/pipelines/1295042609.
This commit is contained in:
parent
9c8c9bb458
commit
95ac8e8ef1
3
.SRCINFO
3
.SRCINFO
@ -24,7 +24,6 @@ pkgbase = firedragon
|
||||
makedepends = nasm
|
||||
makedepends = nodejs
|
||||
makedepends = python
|
||||
makedepends = rust
|
||||
makedepends = unzip
|
||||
makedepends = wasi-compiler-rt
|
||||
makedepends = wasi-libc
|
||||
@ -69,9 +68,11 @@ pkgbase = firedragon
|
||||
backup = usr/lib/firedragon/firedragon.cfg
|
||||
backup = usr/lib/firedragon/distribution/policies.json
|
||||
source = https://gitlab.com/api/v4/projects/55893651/packages/generic/firedragon/11.12.2-2/firedragon-v11.12.2-2.source.tar.zst
|
||||
source = rustup.sh::https://sh.rustup.rs
|
||||
source = https://gitlab.com/garuda-linux/firedragon/settings/-/raw/master/firedragon.psd
|
||||
source = firedragon.desktop
|
||||
sha256sums = 880e094a9fb72b2f4c6ee212d5b530b9fd5c72bf0a6b755af309afb4c09f151c
|
||||
sha256sums = 32a680a84cf76014915b3f8aa44e3e40731f3af92cd45eb0fcc6264fd257c428
|
||||
sha256sums = 61355930cc59813e7e610ffdab8a01e32be980fffe1dfd8f9654b8f8f9f7fdc0
|
||||
sha256sums = 53d3e743f3750522318a786befa196237892c93f20571443fdf82a480e7f0560
|
||||
|
||||
|
10
PKGBUILD
10
PKGBUILD
@ -52,7 +52,6 @@ makedepends=(cbindgen
|
||||
nasm
|
||||
nodejs
|
||||
python
|
||||
rust
|
||||
unzip
|
||||
wasi-compiler-rt
|
||||
wasi-libc
|
||||
@ -79,9 +78,11 @@ options=(!debug
|
||||
backup=("usr/lib/${pkgname}/${pkgname}.cfg"
|
||||
"usr/lib/${pkgname}/distribution/policies.json")
|
||||
source=(https://gitlab.com/api/v4/projects/55893651/packages/generic/firedragon/${_pkgver}/firedragon-v${_pkgver}.source.tar.zst
|
||||
rustup.sh::https://sh.rustup.rs
|
||||
https://gitlab.com/garuda-linux/firedragon/settings/-/raw/master/firedragon.psd
|
||||
"${pkgname}.desktop")
|
||||
sha256sums=('880e094a9fb72b2f4c6ee212d5b530b9fd5c72bf0a6b755af309afb4c09f151c'
|
||||
'32a680a84cf76014915b3f8aa44e3e40731f3af92cd45eb0fcc6264fd257c428'
|
||||
'61355930cc59813e7e610ffdab8a01e32be980fffe1dfd8f9654b8f8f9f7fdc0'
|
||||
'53d3e743f3750522318a786befa196237892c93f20571443fdf82a480e7f0560')
|
||||
install="${pkgname}.install"
|
||||
@ -99,6 +100,13 @@ prepare() {
|
||||
rm -rf "${srcdir}/mozbuild"
|
||||
mkdir "${srcdir}/mozbuild"
|
||||
|
||||
# Install rust 1.77 in $srcdir and preprend to path
|
||||
export RUSTUP_HOME="${srcdir}/rustup"
|
||||
export CARGO_HOME="${srcdir}/cargo"
|
||||
export RUSTUP_INIT_SKIP_PATH_CHECK=yes
|
||||
sh "${srcdir}/rustup.sh" -q -y --no-modify-path --default-toolchain 1.77
|
||||
export PATH="${srcdir}/cargo/bin:$PATH"
|
||||
|
||||
cd firedragon-v"${_pkgver}" || exit
|
||||
cat > ../mozconfig << END
|
||||
ac_add_options --with-app-basename=${_pkgname}
|
||||
|
Loading…
Reference in New Issue
Block a user