| Server IP : 39.108.156.168 / Your IP : 216.73.216.104 Web Server : nginx/1.24.0 System : Linux e2.ksyuki.com 6.11.0-25-generic #25~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Apr 15 17:20:50 UTC 2 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /bin/ |
Upload File : |
#!/bin/sh
#
# Authors:
# Hayaki Saito, 2015
# Fredrick R. Brennan & libsixel developers (see AUTHORS), 2021-
#
prefix=/usr
exec_prefix=bin
libdir=lib/x86_64-linux-gnu
include_dir=include/sixel
bindir=bin
datadir=share
datarootdir=share
mandir=share/man
LANG=C; export LANG
LANGUAGE=C; export LANGUAGE
LC_ALL=C; export LC_ALL
LC_CTYPE=C; export LC_CTYPE
test $# = 0 && exec /bin/sh $0 --error
while test $# -gt 0; do
case "$1" in
# basic configuration
--prefix)
echo "$prefix"
;;
--exec-prefix)
echo "${exec_prefix}"
;;
# compile/link
--cflags)
echo "-I${include_dir}"
;;
--libs)
echo "-L${libdir} -lsixel"
;;
# identification
--version)
echo 1.10.3
;;
--abi-version)
echo @LS_LT_CURRENT@:@LS_LT_REVISION@:@LS_LT_AGE@ | tr : .
;;
# locations
--bindir)
echo "${bindir}"
;;
--datadir)
echo "${datadir}"
;;
--datarootdir)
echo "${datarootdir}"
;;
--libdir)
echo "${libdir}"
;;
--mandir)
echo "${mandir}"
;;
# general info
--help)
cat <<ENDHELP
Usage: libsixel-config [options]
Options:
--prefix echos the package-prefix of libsixel
--exec-prefix echos the executable-prefix of libsixel
--cflags echos the C compiler flags needed to compile with libsixel
--libs echos the libraries needed to link with libsixel
--version echos the release+patchdate version of libsixel
--abi-version echos the ABI version of libsixel
--bindir echos the directory containing libsixel programs
--datadir echos the directory containing libsixel data
--libdir echos the directory containing libsixel libraries
--mandir echos the directory containing libsixel manpages
--help prints this message
ENDHELP
;;
--error|*)
/bin/sh $0 --help 1>&2
exit 1
;;
esac
shift
done