generic-poky/meta/recipes-devtools/rpm/rpm-4.11.2/pythondeps.sh

17 lines
207 B
Bash
Executable File

#!/bin/sh
[ $# -ge 1 ] || {
cat > /dev/null
exit 0
}
case $1 in
-R|--requires)
shift
grep "/usr/\(lib[^/]*\|share\)/python[^/]*/" >/dev/null && echo "python"
exit 0
;;
esac
exit 0