25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pimp.in 255 B

123456789101112
  1. #!/bin/sh
  2. prefix=@prefix@
  3. exec_prefix=@exec_prefix@
  4. pimpdir=@libdir@/ThePimp
  5. case "$0" in
  6. @bindir@/*) exec mono "${pimpdir}/ThePimp.exe" "$@" ;;
  7. */*) exec mono "@abs_srcdir@/ThePimp.exe" "$@" ;;
  8. *) exec mono "${pimpdir}/ThePimp.exe" "$@" ;;
  9. esac