Search Criteria
Package Details: librashader 0.5.1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/librashader.git (read-only, click to copy) |
---|---|
Package Base: | librashader |
Description: | A preprocessor, compiler, and runtime for RetroArch 'slang' shaders, rewritten in pure Rust. |
Upstream URL: | https://github.com/SnowflakePowered/librashader |
Licenses: | MPL-2.0, GPL-3.0-only |
Conflicts: | librashader |
Provides: | librashader |
Submitter: | Snowstorm64 |
Maintainer: | Snowstorm64 |
Last Packager: | Snowstorm64 |
Votes: | 5 |
Popularity: | 0.82 |
First Submitted: | 2024-02-23 18:11 (UTC) |
Last Updated: | 2024-11-04 20:12 (UTC) |
Dependencies (6)
- libgl (nvidia-340xx-utilsAUR, libglvnd-gitAUR, amdgpu-pro-oglpAUR, amdgpu-pro-oglp-legacyAUR, libglvnd)
- vulkan-driver (nvidia-410xx-utilsAUR, nvidia-440xx-utilsAUR, nvidia-430xx-utilsAUR, swiftshader-gitAUR, amdvlk-debugAUR, nvidia-vulkan-utilsAUR, amdvlk-2023q3.3AUR, amdvlk-2021q2.5AUR, vulkan-amdgpu-proAUR, nvidia-390xx-utilsAUR, amdvlk-gitAUR, vulkan-nouveau-gitAUR, mesa-minimal-gitAUR, mesa-gitAUR, vulkan-amdgpu-pro-legacyAUR, nvidia-utils-teslaAUR, amdvlk-binAUR, mesa-wsl2-gitAUR, nvidia-535xx-utilsAUR, nvidia-525xx-utilsAUR, nvidia-510xx-utilsAUR, nvidia-550xx-utilsAUR, nvidia-utils-betaAUR, nvidia-470xx-utilsAUR, amdonly-gaming-vulkan-radeon-gitAUR, amdonly-gaming-vulkan-swrast-gitAUR, vulkan-radeon-amd-bc250AUR, amdvlk, nvidia-utils, vulkan-intel, vulkan-nouveau, vulkan-radeon, vulkan-swrast, vulkan-virtio)
- vulkan-icd-loader (vulkan-icd-loader-gitAUR)
- gcc (gcc-gitAUR, gccrs-gitAUR, gcc11AUR, gcc-snapshotAUR) (make)
- ninja (ninja-kitwareAUR, ninja-memAUR, ninja-fuchsia-gitAUR, ninja-gitAUR, ninja-jobserverAUR) (make)
- rust (rust-nightlyAUR, rustup-gitAUR, rust-nightly-binAUR, rust-gitAUR, rustup) (make)
Latest Comments
Snowstorm64 commented on 2024-09-08 12:18 (UTC) (edited on 2024-09-08 16:06 (UTC) by Snowstorm64)
The upgrade to version 0.4.0 is now put on hold until, probably, the next release of ares-emu (v141?), due to recent API changes that breaks a lot of shaders.
UPDATE: it turns out to be a librashader bug, that is fixed with v0.4.1.
Snowstorm64 commented on 2024-04-08 11:44 (UTC)
With this new revision I have changed the variables' name, so it shouldn't be an issue anymore.
Snowstorm64 commented on 2024-04-05 18:33 (UTC)
It's a weird issue indeed. Either the dashes are messing with aurutils, or the variable "profile" is already used...after all it's a common name, maybe I should haven't picked specifically that. What happens if you rename the variable to something other than "profile"?
kusoneko commented on 2024-04-05 17:37 (UTC)
I use aurutils as my AUR helper, specifically using this command to install/update non-VCS AUR packages:
aur sync --no-view --upgrades --chroot --clean [pkgname]
where [pkgname] is optional and explicitly adds a new package to be built. When this fails, I look at the error message and go to$XDG_CACHE_HOME/aurutils/sync/$pkgname
modify the PKGBUILD to fix the issue, then runaur build --chroot --syncdeps
from that directory.As for how I managed to build it, as I said I essentially did
cd $XDG_CACHE_HOME/aurutils/sync/librashader
and then modified the PKGBUILD like so:and then built it with
aur build --chroot --syncdeps
and it worked. As I stated in the previous message, the issue seems to be that${profile}
is not being replaced by the profile variable's value in at least the build() function (having built ares-emu afterwards successfully, I can conclude it did replace it properly in the few locations it appears in the package() function, which is a weird issue to have... I've tested also replacing it with"${profile}"
,$profile
and other similar attempts to get it to properly replace the variable with the value just in case that was the issue, but it appears not to work either with a similar error about profile being an empty value unless it's directly replaced in the build() function. I don't exactly understand why that variable fails but the${fix_pkgname}
and${pkgver}
variables work just fine.Snowstorm64 commented on 2024-04-05 08:11 (UTC)
Hi kusoneko, thanks for the report. How did you build it? If applicable, can you tell me which AUR helper you have used?
kusoneko commented on 2024-04-04 21:16 (UTC)
This doesn't build on my end currently, with the following error:
It seems to work if I directly go in the PKGBUILD and replace in the build() function the ${profile} with optimized to avoid the variable substitution failing. I can't say why it fails in build but seems to work in package, but anyways, just thought I'd mention it