/usr/bin/uuid-config is in libossp-uuid-dev 1.6.2-1.5+b4.
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | #!/bin/sh
##
## OSSP uuid - Universally Unique Identifier
## Copyright (c) 2004-2008 Ralf S. Engelschall <rse@engelschall.com>
## Copyright (c) 2004-2008 The OSSP Project <http://www.ossp.org/>
##
## This file is part of OSSP uuid, a library for the generation
## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
## the above copyright notice and this permission notice appear in all
## copies.
##
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
## uuid-config.in: library build utility
##
DIFS='
'
prefix="/usr"
exec_prefix="${prefix}"
datarootdir="${prefix}/share"
uuid_prefix="$prefix"
uuid_exec_prefix="$exec_prefix"
uuid_bindir="${exec_prefix}/bin"
uuid_libdir="/usr/lib"
if [ -n "$DEB_HOST_MULTIARCH" ]; then
uuid_libdir="/usr/lib/$DEB_HOST_MULTIARCH"
elif [ -n "$DEB_HOST_ARCH" ] && which dpkg-architecture >/dev/null 2>&1; then
uuid_libdir="/usr/lib/$(dpkg-architecture -a$DEB_HOST_ARCH -qDEB_HOST_MULTIARCH)"
fi
uuid_includedir="/usr/include/ossp"
uuid_mandir="${prefix}/share/man"
uuid_datadir="${datarootdir}"
uuid_acdir="${datarootdir}/aclocal"
uuid_cflags="-O2 -fdebug-prefix-map=/build/ossp-uuid-sEm0Gz/ossp-uuid-1.6.2=. -fstack-protector-strong -Wformat -Werror=format-security -pipe"
uuid_ldflags="-Wl,-z,relro"
uuid_libs="-lnsl "
uuid_version="1.6.2 (04-Jul-2008)"
help=no
version=no
usage="uuid-config"
usage="$usage [--help] [--version] [--all]"
usage="$usage [--prefix] [--exec-prefix] [--bindir] [--libdir] [--includedir] [--mandir] [--datadir] [--acdir]"
usage="$usage [--cflags] [--ldflags] [--libs]"
if [ $# -eq 0 ]; then
echo "uuid-config:Error: Invalid option" 1>&2
echo "uuid-config:Usage: $usage" 1>&2
exit 1
fi
output=''
output_extra=''
all=no
prev=''
OIFS="$IFS" IFS="$DIFS"
for option
do
if [ ".$prev" != . ]; then
eval "$prev=\$option"
prev=''
continue
fi
case "$option" in
-*=*) optarg=`echo "$option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg='' ;;
esac
case "$option" in
--help|-h)
echo "Usage: $usage"
exit 0
;;
--version|-v)
echo "OSSP uuid $uuid_version"
exit 0
;;
--all)
all=yes
;;
--prefix)
output="$output $uuid_prefix"
;;
--exec-prefix)
output="$output $uuid_exec_prefix"
;;
--bindir)
output="$output $uuid_bindir"
;;
--libdir)
output="$output $uuid_libdir"
;;
--includedir)
output="$output $uuid_includedir"
;;
--mandir)
output="$output $uuid_mandir"
;;
--datadir)
output="$output $uuid_datadir"
;;
--acdir)
output="$output $uuid_acdir"
;;
--cflags)
output="$output -I$uuid_includedir"
output_extra="$output_extra $uuid_cflags"
;;
--ldflags)
output="$output -L$uuid_libdir"
output_extra="$output_extra $uuid_ldflags"
;;
--libs)
output="$output -lossp-uuid"
output_extra="$output_extra $uuid_libs"
;;
* )
echo "uuid-config:Error: Invalid option" 1>&2
echo "uuid-config:Usage: $usage" 1>&2
exit 1;
;;
esac
done
IFS="$OIFS"
if [ ".$prev" != . ]; then
echo "uuid-config:Error: missing argument to --`echo $prev | sed 's/_/-/g'`" 1>&2
exit 1
fi
if [ ".$output" != . ]; then
if [ ".$all" = .yes ]; then
output="$output $output_extra"
fi
echo $output
fi
|