/usr/bin/libast-config is in libast2-dev 0.7-7.
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 | #!/bin/sh
#
# libast-config -- libast configuration helper script
#
# 29 October 2000
# Michael Jennings <mej@eterm.org>
#
# See libast source/documentation for license
#
prefix=/usr
exec_prefix=${prefix}
CPPFLAGS="-I/usr/include -D_FORTIFY_SOURCE=2 "
LDFLAGS="-L/usr/lib/x86_64-linux-gnu -L/usr/lib -Wl,-z,relro "
LIBS="-L/usr/lib/x86_64-linux-gnu -lImlib2 -lSM -lICE "
X11_SUPPORT=X11
IMLIB2_SUPPORT=Imlib2
MMX_SUPPORT=
REGEXP_SUPPORT=regexp-posix
VERSION=0.7
case $1 in
-h | --help | -help)
echo "Usage: libast-config [--version] [--prefix] [--exec-prefix] [--cppflags] [--ldflags] [--libs] [--support]"
;;
-v | --version | -version)
echo "Libary of Assorted Spiffy Things: libast $VERSION"
;;
-p | --prefix | -prefix)
echo "$prefix"
;;
-e | --exec-prefix | -exec-prefix)
echo "$exec_prefix"
;;
-c | --cppflags | -cppflags | --cflags | -cflags)
echo "$CPPFLAGS"
;;
-l | --ldflags | -ldflags)
echo "$LDFLAGS"
;;
-L | --libs | -libs)
echo "$LIBS"
;;
-s | --support | -support)
echo "$MMX_SUPPORT $X11_SUPPORT $IMLIB2_SUPPORT"
;;
esac
|