/usr/bin/libotf-config is in libotf-dev 0.9.13-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 | #!/bin/sh
# libotf-config -- helper script for libotf.
# Copyright (C) 2003, 2004
# National Institute of Advanced Industrial Science and Technology (AIST)
# Registration Number H15PRO167
# See the end for copying conditions.
prefix=/usr
exec_prefix=${prefix}
help ()
{
echo "Usage: otflib-config [--version | --libs | --cflags ]"
}
if test $# -eq 0; then
help 1>&2
exit 0
fi
case $1 in
--version)
echo "0.9.13";;
--libs)
pkg-config libotf --libs;;
--cflags)
pkg-config libotf --cflags;;
*)
help
exit 1;;
esac
# Copyright (C) 2003, 2004
# National Institute of Advanced Industrial Science and Technology (AIST)
# Registration Number H15PRO167
# This file is part of libotf.
# Libotf is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
# Libotf is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
# License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this library, in a file named COPYING; if not,
# write to the Free Software Foundation, Inc., 59 Temple Place, Suite
# 330, Boston, MA 02111-1307, USA.
|