/usr/bin/eboard-config is in eboard 1.1.1-5ubuntu1.
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 | #!/bin/sh
#
# configuration script for eboard
#
# syntax: eboard-config --prefix
# eboard-config --bindir
# eboard-config --datadir
# eboard-config --version
#
# author: Felipe Bergo <fbergo@gmail.com>
# with patches from Han Boetes
# loosely based on gtk-config
#
prefix=/usr
bindir=/usr/bin
datadir=/usr/share/games
package=eboard
version=1.1.1
usage()
{
cat >&2 <<EOF
Usage: eboard-config --prefix
eboard-config --datadir
eboard-config --bindir
eboard-config --version
EOF
exit 1;
}
if test $# -ne 1; then
usage
fi
case "$1" in
--prefix) echo $prefix;;
--bindir) echo $bindir;;
--datadir) echo $datadir/$package;;
--version) echo $version;;
*) usage;;
esac
exit 0
|