/usr/bin/idzebra-config-2.0 is in libidzebra-2.0-dev 2.0.44-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | #!/bin/sh
version=2.0.44
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
echo_cflags=no
echo_libs=no
echo_help=no
echo_tab=no
echo_source=no
echo_lalibs=no
echo_modules=no
idzebra_src_root=/build/buildd/idzebra-2.0.44
idzebra_build_root=/build/buildd/idzebra-2.0.44
package_suffix=-2.0
extralibs="-lyaz_icu -lyaz_server -lyaz -lexslt -lxslt -lxml2 -lpthread -licui18n -licuuc -licudata -ltcl8.4${TCL_DBGX} -ldl -lpthread -lieee -lm -lexpat "
extralalibs="-lyaz -ltcl8.4${TCL_DBGX} -ldl -lpthread -lieee -lm -lexpat "
usage()
{
cat <<EOF
Usage: idzebra-config [OPTIONS] [LIBRARIES]
Options:
[--prefix[=DIR]]
[--version]
[--libs]
[--lalibs]
[--cflags]
[--tab]
[--modules]
EOF
exit $1
}
if test $# -eq 0; then
echo_help=yes
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
exec_prefix=$prefix
libdir=${exec_prefix}/lib
;;
--prefix)
echo $prefix
exit 0
;;
--version)
echo $version
exit 0
;;
--cflags)
echo_cflags=yes
;;
--libs)
echo_libs=yes
;;
--tab)
echo_tab=yes
;;
--lalibs)
echo_lalibs=yes
;;
--modules)
echo_modules=yes
;;
-*)
echo_help=yes
;;
*)
echo "$0: unsupported argument"
exit 1
;;
esac
shift
done
IDZEBRAINC="-DZEBRA_ZINT=1 -DYAZ_POSIX_THREADS=1 -DYAZ_HAVE_XML2=1 -DYAZ_HAVE_XSLT=1 -DYAZ_HAVE_EXSLT=1 -I/usr/include/libxml2 -D_REENTRANT -D YAZ_HAVE_ICU=1"
if test "$echo_source" = "yes"; then
IDZEBRALIB="-L${idzebra_build_root}/index/.libs -lidzebra${package_suffix}"
IDZEBRALALIB="${idzebra_build_root}/index/libidzebra${package_suffix}.la"
IDZEBRALIB="$IDZEBRALIB $extralibs"
IDZEBRALALIB="$IDZEBRALALIB $extralalibs"
IDZEBRAINC="$IDZEBRAINC -I${idzebra_src_root}/include"
IDZEBRATAB="${idzebra_src_root}/tab"
IDZEBRAMOD="${idzebra_src_root}/recctrl"
else
IDZEBRALIB="-lidzebra${package_suffix}"
if test "$libdir" != "/usr/lib"; then
IDZEBRALIB="-L${libdir} $IDZEBRALIB"
fi
IDZEBRALIB="$IDZEBRALIB $extralibs"
IDZEBRALALIB="$IDZEBRALIB"
IDZEBRAINC="$IDZEBRAINC -I${prefix}/include/idzebra${package_suffix}"
IDZEBRATAB="${prefix}/share/idzebra${package_suffix}/tab"
IDZEBRAMOD="${libdir}/idzebra${package_suffix}/modules"
fi
if test "$echo_help" = "yes"; then
usage 1 1>&2
fi
if test "$echo_cflags" = "yes"; then
echo $IDZEBRAINC
fi
if test "$echo_libs" = "yes"; then
echo $IDZEBRALIB
fi
if test "$echo_lalibs" = "yes"; then
echo $IDZEBRALALIB
fi
if test "$echo_tab" = "yes"; then
echo $IDZEBRATAB
fi
if test "$echo_modules" = "yes"; then
echo $IDZEBRAMOD
fi
# Local Variables:
# mode:shell-script
# sh-indentation: 2
# sh-basic-offset: 4
# End:
|