mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-26 00:42:22 +00:00
newapkbuild: automatically add perl to $depends
The same thing is already done for other scripting languages (e.g. python).
This commit is contained in:
parent
e0e6ee0d14
commit
33957133ec
@ -242,6 +242,10 @@ newaport() {
|
||||
depends="python3"
|
||||
fi
|
||||
|
||||
if [ -z "$depends" ] && [ "$buildtype" = "perl" ]; then
|
||||
depends="perl"
|
||||
fi
|
||||
|
||||
if [ -z "$checkdepends" ] && [ "$buildtype" = "python" ]; then
|
||||
checkdepends="py3-pytest"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user