You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
usage="\
|
||
6 years ago
|
Usage: libart2-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
|
||
13 years ago
|
|
||
|
if test $# -eq 0; then
|
||
|
echo "${usage}" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
6 years ago
|
if ! which pkg-config >/dev/null; then
|
||
|
echo "pkg-config not found on your system" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
prefix=`pkg-config --variable=prefix libart-2.0`
|
||
|
exec_prefix=`pkg-config --variable=exec_prefix libart-2.0`
|
||
|
exec_prefix_set=no
|
||
|
libs=""
|
||
|
output_libs=no
|
||
|
|
||
13 years ago
|
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)
|
||
6 years ago
|
echo `pkg-config --modversion libart-2.0`
|
||
13 years ago
|
;;
|
||
|
--cflags)
|
||
6 years ago
|
echo `pkg-config --cflags-only-I libart-2.0`
|
||
13 years ago
|
;;
|
||
|
--libs)
|
||
6 years ago
|
libs=`pkg-config --libs libart-2.0`
|
||
13 years ago
|
output_libs=yes
|
||
|
;;
|
||
|
--static)
|
||
|
libs="$libs -lm"
|
||
13 years ago
|
;;
|
||
|
*)
|
||
|
echo "${usage}" 1>&2
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
shift
|
||
|
done
|
||
|
|
||
13 years ago
|
if test $output_libs = yes ; then
|
||
|
echo $libs
|
||
|
fi
|