xbps-src: support "alternatives" from xbps-0.48.
This commit is contained in:
parent
8c4fcac519
commit
3e1154266f
3 changed files with 12 additions and 1 deletions
|
@ -82,6 +82,12 @@ genpkg() {
|
|||
_conf_files="${_conf_files} ${f}"
|
||||
done
|
||||
fi
|
||||
if [ -n "$alternatives" ]; then
|
||||
local _alternatives=
|
||||
for f in ${alternatives}; do
|
||||
_alternatives="${_alternatives} ${f}"
|
||||
done
|
||||
fi
|
||||
|
||||
msg_normal "Creating $binpkg for repository $pkgdir ...\n"
|
||||
|
||||
|
@ -100,6 +106,7 @@ genpkg() {
|
|||
${_gitrevs:+--source-revisions "${_gitrevs}"} \
|
||||
${_shprovides:+--shlib-provides "${_shprovides}"} \
|
||||
${_shrequires:+--shlib-requires "${_shrequires}"} \
|
||||
${_alternatives:+--alternatives "${_alternatives}"} \
|
||||
${_preserve:+--preserve} \
|
||||
${_tags:+--tags "${tags}"} \
|
||||
--architecture ${arch} \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue