#!/bin/shset -eu for arg ; do case "$arg" in --version) printf 'Python 2.7.15' ;; --includes) ;; --ldflags) printf '%s' '-lpython2.7' ;; --exec-prefix) ;; esacdone exit 0