/usr/bin/yazpp-config is in libyazpp4-dev 1.2.7-0ubuntu1.
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 | #!/bin/sh
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
echo_cflags=no
echo_libs=no
echo_help=no
echo_tabs=no
echo_source=no
echo_lalibs=no
src_root=/build/buildd/yazpp-1.2.7
build_root=/build/buildd/yazpp-1.2.7
yazlibs="-lyaz -lexslt -lxslt -lxml2 -lpthread "
yazlalibs="-lyaz -lexslt -lxslt -lxml2 -lpthread "
VERSION=1.2.7
usage()
{
cat <<EOF
Usage: yazpp-config [OPTIONS] [LIBRARIES]
Options:
[--prefix[=DIR]]
[--version]
[--libs]
[--lalibs]
[--cflags]
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
;;
--prefix)
echo $prefix
exit 0
;;
--version)
echo $VERSION
exit 0
;;
--cflags)
echo_cflags=yes
;;
--libs)
echo_libs=yes
;;
--tabs)
echo_tabs=yes
;;
--lalibs)
echo_lalibs=yes
;;
-*)
echo_help=yes
;;
esac
shift
done
libs_short="-lyazpp -lzoompp"
YAZPPINC="-DYAZ_POSIX_THREADS=1 -DYAZ_HAVE_XML2=1 -DYAZ_HAVE_XSLT=1 -DYAZ_HAVE_EXSLT=1 -I/usr/include/libxml2"
if test "$echo_source" = "yes"; then
YAZPPLIB="-L${build_root}/src/.libs -lyazpp"
YAZPPLIB="$YAZPPLIB -L${build_root}/zoom/.libs -lzoompp"
YAZPPLIB="$YAZPPLIB $yazlibs"
YAZPPLALIB="${build_root}/src/libyazpp.la $yazlalibs"
YAZPPINC="-I${src_root}/include $YAZPPINC"
else
if test "$prefix" = "/usr"; then
YAZPPLIB="${libs_short} $yazlibs"
else
YAZPPLIB="-L${libdir} ${libs_short} $yazlibs"
fi
YAZPPLALIB=$YAZPPLIB
if test "$prefix" != "/usr"; then
YAZPPINC="-I${includedir} $YAZPPINC"
fi
fi
if test "$echo_help" = "yes"; then
usage 1 1>&2
fi
if test "$echo_cflags" = "yes"; then
echo $YAZPPINC
fi
if test "$echo_libs" = "yes"; then
echo $YAZPPLIB
fi
if test "$echo_lalibs" = "yes"; then
echo $YAZPPLALIB
fi
|