mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
64 lines
981 B
Text
64 lines
981 B
Text
|
#! /bin/sh
|
||
|
|
||
|
prefix="$(cd "${0%/*}/.."; pwd)"
|
||
|
exec_prefix=${prefix}
|
||
|
exec_prefix_set=no
|
||
|
libdir=${exec_prefix}/lib
|
||
|
includedir=${prefix}/include
|
||
|
|
||
|
usage="\
|
||
|
Usage: libmikmod-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--ldadd]"
|
||
|
|
||
|
if test $# -eq 0 ; then
|
||
|
echo "${usage}" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
while test $# -gt 0 ; do
|
||
|
case "$1" in
|
||
|
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
||
|
*) optarg= ;;
|
||
|
esac
|
||
|
|
||
|
case $1 in
|
||
|
--prefix=*)
|
||
|
prefix=$optarg
|
||
|
if test $exec_prefix_set = no ; then
|
||
|
exec_prefix=$optarg
|
||
|
fi
|
||
|
;;
|
||
|
--prefix)
|
||
|
echo $prefix
|
||
|
;;
|
||
|
--exec-prefix=*)
|
||
|
exec_prefix=$optarg
|
||
|
exec_prefix_set=yes
|
||
|
;;
|
||
|
--exec-prefix)
|
||
|
echo $exec_prefix
|
||
|
;;
|
||
|
--version)
|
||
|
echo 3.3.11
|
||
|
;;
|
||
|
--cflags)
|
||
|
if test $includedir != /usr/include ; then
|
||
|
includes=-I$includedir
|
||
|
fi
|
||
|
echo $includes
|
||
|
;;
|
||
|
--ldadd)
|
||
|
echo
|
||
|
;;
|
||
|
--libs)
|
||
|
echo -L${exec_prefix}/lib -lmikmod -framework CoreAudio -lm
|
||
|
;;
|
||
|
*)
|
||
|
echo "${usage}" 1>&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
shift
|
||
|
done
|
||
|
|