In one package.yml file I need to download several tarballs. So I just defined a list
source
- tarball_1
- tarball_2
- tarball_3
which seems to work. Unfortunately, two tarballs have the same name, even though they contain different files. When checking for this in other distributions, I saw, that files can be renamed on downloading. For example, in Gentoo
SRC_URI="https://github.com/RadeonOpenCompute/llvm/archive/roc-${PV}.tar.gz -> llvm-roc-${PV}.tar.gz
https://github.com/RadeonOpenCompute/clang/archive/roc-${PV}.tar.gz -> clang-roc-${PV}.tar.gz
https://github.com/RadeonOpenCompute/lld/archive/roc-${PV}.tar.gz -> lld-roc-${PV}.tar.gz"
Is something like this possible in Solus as well ?