#!/bin/sh usage() { echo "usage: $0 [OPTIONS]" cat << EOH options: [--libs] [--libs_debug] [--cflags] [--version] EOH exit 1; } prefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include flags="" while test $# -gt 0 do case $1 in --libs) flags="$flags -L$libdir -lecasoundc" ;; --libs_debug) flags="$flags -L$libdir -lecasoundc_debug" ;; --ldflags) case "$libdir" in /usr/lib);; *) flags="$flags -Wl,--rpath -Wl,$libdir" ;; esac ;; --cflags) flags="$flags -I$includedir/libecasoundc" ;; --version) echo 2.7.2 ;; *) echo "$0: unknown option $1" echo usage ;; esac shift done if test -n "$flags" then echo $flags fi