mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
13 lines
350 B
Bash
Executable File
13 lines
350 B
Bash
Executable File
#!/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
|