Files
Arch-R/packages/lang/Python/scripts/python-config

13 lines
350 B
Plaintext
Raw Normal View History

#!/bin/sh
case $1 in
--prefix) echo "/usr" ;;
--exec-prefix) echo "/usr" ;;
--includes) echo "-I%PREFIX%/include/python2.6" ;;
--libs) echo "-lpthread -ldl -lutil -lm -lpython2.6" ;;
--cflags) echo "-I%PREFIX%/include/python2.6 -DNDEBUG %CFLAGS%" ;;
--ldflags) echo "-L%PREFIX%/lib -lpthread -ldl -lutil -lm -lpython2.6" ;;
esac
exit 0