/usr/bin/allegro-config is in liballegro4-dev 2:4.4.2-4.
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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | #!/bin/sh
#
# Note: allegro-config is generated from allegro-config.in, by autoconf.
#
# This script returns suitable commandline options for compiling programs
# using the Allegro library, for example:
#
# gcc myprog.c -o myprog `allegro-config --libs`
#
# Undocumented feature for internal use:
# If --addon switch is passed, the output is more suitable for addon building.
#
# This is heavily based on a similar script from GTK.
version=4.4.2
prefix=/usr
exec_prefix=$prefix
exec_prefix_set=no
include_prefix=/usr
include_path=${prefix}/include
lib_path=${exec_prefix}/lib/x86_64-linux-gnu
bin_path=${exec_prefix}/bin
static_libs=no
lib_type=alleg
accepts_frameworks=no
allegro_ldflags=""
allegro_libs=" -lm -lpthread -lrt -lSM -lICE -lX11 -lXext -lXext -lXcursor -lXcursor -lXpm -lXxf86vm -lasound -lXxf86dga -lSM -lICE -lX11 -lXext -ldl"
allegro_frameworks=""
allegro_cflags=""
allegro_cppflags=""
usage()
{
cat <<EOF
Usage: allegro-config [OPTIONS] [LIBRARIES]
Options:
--prefix[=DIR]
--exec-prefix[=DIR]
--version[=VERSION]
--cflags
--cppflags
--libs
--static
--shared
EOF
if test "$accepts_frameworks" = "yes"; then
echo " --frameworks"
fi
cat <<EOF
--env
Libraries:
release
debug
profile
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
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
if test $exec_prefix_set = no; then
exec_prefix=$optarg
fi
;;
--prefix)
echo_prefix=yes
;;
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
;;
--exec-prefix)
echo_exec_prefix=yes
;;
--version=*)
version=$optarg
;;
--version)
echo $version
;;
--cflags)
echo_cflags=yes
;;
--cppflags)
echo_cppflags=yes
;;
--libs)
echo_libs=yes
;;
--static)
static_libs=yes
echo_libs=yes
;;
--shared)
static_libs=no
echo_libs=yes
;;
--frameworks)
if test "$accepts_frameworks" = "yes"; then
echo_frameworks=yes
else
usage 1 1>&2
fi
;;
--env)
echo_env=yes
;;
--addon)
addon_form=yes
;;
release)
lib_type=alleg
;;
debug)
allegro_cflags=-DDEBUGMODE $allegro_cflags
allegro_cppflags=-DDEBUGMODE $allegro_cppflags
lib_type=alleg-debug
;;
profile)
lib_type=alleg-profile
;;
*)
usage 1 1>&2
;;
esac
shift
done
if test "$echo_prefix" = "yes"; then
echo $prefix
fi
if test "$echo_exec_prefix" = "yes"; then
echo $exec_prefix
fi
if test "$echo_cflags" = "yes"; then
if test -n "$include_prefix" -a -z "$addon_form"; then
echo -I${include_path} $allegro_cflags
else
echo $allegro_cflags
fi
fi
if test "$echo_cppflags" = "yes"; then
if test -n "$include_prefix" -a -z "$addon_form"; then
echo -I${include_path} $allegro_cppflags
else
echo $allegro_cppflags
fi
fi
if test "$echo_libs" = "yes"; then
test -z "$addon_form" && libdirs=-L${lib_path}
if test "$static_libs" = "yes"; then
echo $libdirs $allegro_ldflags -l${lib_type} $allegro_libs
else
echo $libdirs $allegro_ldflags -l${lib_type}
fi
fi
if test "$echo_frameworks" = "yes"; then
echo $allegro_frameworks
fi
if test "$echo_env" = "yes"; then
echo "export PATH=\$PATH:$bin_path"
echo "export LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:$lib_path"
echo "export LIBRARY_PATH=\$LIBRARY_PATH:$lib_path"
echo "export C_INCLUDE_PATH=\$C_INCLUDE_PATH:$include_path"
echo "export CPLUS_INCLUDE_PATH=\$CPLUS_INCLUDE_PATH:$include_path"
echo "export OBJC_INCLUDE_PATH=\$OBJC_INCLUDE_PATH:$include_path"
fi
|