Hi all,
I cannot find the PKGBUILD and other source files for the nvidia-dkms package on https://gitea.artixlinux.org/packages (https://gitea.artixlinux.org/packages)
Are they not available or am I looking in the wrong place?
click on source files link in packages list (https://packages.artixlinux.org/packages/world/x86_64/nvidia-dkms/)
https://gitea.artixlinux.org/packages/nvidia-utils
Other ways to get what is called the 'pkgbase' for a 'split package' include:
Install expac and use its %e option
$ expac %e amd-ucode
linux-firmware
Look it up in the local database
$ cat /var/lib/pacman/local/amd-ucode-*/desc | grep -A 1 %BASE%
%BASE%
linux-firmware
I've never quite understood why pacman -Qii doesn't show this detail ?
You can put this in your ~/.bash_rc as an alias or make a script:
pacman-source() (
git clone https://gitea.artixlinux.org/packages/$1
)
Then "pacman-source <package>" that may not work for a few that have a different name.
This was said by gripped somewhere.