add mikmod config and .pc file

This commit is contained in:
alexey.lysiuk 2020-12-15 12:39:04 +02:00
parent c201fb17f2
commit d3698a11ad
2 changed files with 75 additions and 0 deletions

63
deps/mikmod/bin/libmikmod-config vendored Executable file
View file

@ -0,0 +1,63 @@
#! /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

12
deps/mikmod/lib/pkgconfig/libmikmod.pc vendored Normal file
View file

@ -0,0 +1,12 @@
prefix=
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: libmikmod
Description: Library for playing Module Files and for Sound Effects
Version: 3.3.11
URL: http://mikmod.sourceforge.net/
Libs: -L${libdir} -lmikmod
Libs.private: -lm
Cflags: -I${includedir}