add files
This commit is contained in:
commit
db33c2fb08
1284 changed files with 183815 additions and 0 deletions
65
bin/Magick++-config
Executable file
65
bin/Magick++-config
Executable file
|
|
@ -0,0 +1,65 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Configure options script for re-calling Magick+ compilation options
|
||||
# required to use the Magick++ library.
|
||||
#
|
||||
#
|
||||
|
||||
prefix=/root/package
|
||||
exec_prefix=${prefix}
|
||||
|
||||
usage='Usage: Magick++-config [--cppflags] [--cxxflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]
|
||||
|
||||
For example, "magick.cpp" may be compiled to produce "magick" as follows:
|
||||
|
||||
"c++ -o magick magick.cpp `Magick++-config --cppflags --cxxflags --ldflags --libs`"'
|
||||
|
||||
if test $# -eq 0; then
|
||||
echo "${usage}" 1>&2
|
||||
exit 1
|
||||
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
|
||||
;;
|
||||
--prefix)
|
||||
echo $prefix
|
||||
;;
|
||||
--exec-prefix=*)
|
||||
exec_prefix=$optarg
|
||||
;;
|
||||
--exec-prefix)
|
||||
echo $exec_prefix
|
||||
;;
|
||||
--version)
|
||||
echo '7.0.7 Q16 HDRI'
|
||||
;;
|
||||
--cflags)
|
||||
/usr/bin/pkg-config --cflags Magick++
|
||||
;;
|
||||
--cxxflags)
|
||||
/usr/bin/pkg-config --cflags Magick++
|
||||
;;
|
||||
--cppflags)
|
||||
/usr/bin/pkg-config --cflags Magick++
|
||||
;;
|
||||
--ldflags)
|
||||
/usr/bin/pkg-config --libs Magick++
|
||||
;;
|
||||
--libs)
|
||||
/usr/bin/pkg-config --libs Magick++
|
||||
;;
|
||||
*)
|
||||
echo "${usage}" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
67
bin/MagickCore-config
Executable file
67
bin/MagickCore-config
Executable file
|
|
@ -0,0 +1,67 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Configure options script for re-calling MagickCore compilation options
|
||||
# required to use the MagickCore library.
|
||||
#
|
||||
|
||||
prefix=/root/package
|
||||
exec_prefix=${prefix}
|
||||
|
||||
usage="\
|
||||
Usage: MagickCore-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]"
|
||||
|
||||
if test $# -eq 0; then
|
||||
echo "${usage}" 1>&2
|
||||
echo "Example: gcc \`MagickCore-config --cflags --cppflags\` -o core core.c \`Magick-config --ldflags --libs\`" 1>&2
|
||||
exit 1
|
||||
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
|
||||
;;
|
||||
--prefix)
|
||||
echo $prefix
|
||||
;;
|
||||
--exec-prefix=*)
|
||||
exec_prefix=$optarg
|
||||
;;
|
||||
--exec-prefix)
|
||||
echo $exec_prefix
|
||||
;;
|
||||
--version)
|
||||
echo '7.0.7 Q16 HDRI'
|
||||
;;
|
||||
--cflags)
|
||||
/usr/bin/pkg-config --cflags MagickCore
|
||||
;;
|
||||
--cxxflags)
|
||||
/usr/bin/pkg-config --cflags MagickCore
|
||||
;;
|
||||
--cppflags)
|
||||
/usr/bin/pkg-config --cflags MagickCore
|
||||
;;
|
||||
--ldflags)
|
||||
/usr/bin/pkg-config --libs MagickCore
|
||||
;;
|
||||
--libs)
|
||||
/usr/bin/pkg-config --libs MagickCore
|
||||
;;
|
||||
--coder-path)
|
||||
echo "/root/package/lib/ImageMagick-7.0.7/modules-Q16HDRI/coders"
|
||||
;;
|
||||
--filter-path)
|
||||
echo "/root/package/lib/ImageMagick-7.0.7/modules-Q16HDRI/filters"
|
||||
;;
|
||||
*)
|
||||
echo "${usage}" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
62
bin/MagickWand-config
Executable file
62
bin/MagickWand-config
Executable file
|
|
@ -0,0 +1,62 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Configure options script for re-calling MagickWand compilation options
|
||||
# required to use the MagickWand library.
|
||||
#
|
||||
|
||||
prefix=/root/package
|
||||
exec_prefix=${prefix}
|
||||
|
||||
usage="\
|
||||
Usage: MagickWand-config [--cflags] [--cppflags] [--exec-prefix] [--ldflags] [--libs] [--prefix] [--version]"
|
||||
|
||||
if test $# -eq 0; then
|
||||
echo "${usage}" 1>&2
|
||||
echo "Example: gcc \`MagickWand-config --cflags --cppflags\` -o wand wand.c \`MagickWand-config --ldflags --libs\`" 1>&2
|
||||
exit 1
|
||||
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
|
||||
;;
|
||||
--prefix)
|
||||
echo $prefix
|
||||
;;
|
||||
--exec-prefix=*)
|
||||
exec_prefix=$optarg
|
||||
;;
|
||||
--exec-prefix)
|
||||
echo $exec_prefix
|
||||
;;
|
||||
--version)
|
||||
echo '7.0.7 Q16 HDRI'
|
||||
;;
|
||||
--cflags)
|
||||
/usr/bin/pkg-config --cflags MagickWand
|
||||
;;
|
||||
--cxxflags)
|
||||
/usr/bin/pkg-config --cflags MagickWand
|
||||
;;
|
||||
--cppflags)
|
||||
/usr/bin/pkg-config --cflags MagickWand
|
||||
;;
|
||||
--ldflags)
|
||||
/usr/bin/pkg-config --libs MagickWand
|
||||
;;
|
||||
--libs)
|
||||
/usr/bin/pkg-config --libs MagickWand
|
||||
;;
|
||||
*)
|
||||
echo "${usage}" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
1
bin/animate
Symbolic link
1
bin/animate
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/compare
Symbolic link
1
bin/compare
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/composite
Symbolic link
1
bin/composite
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/conjure
Symbolic link
1
bin/conjure
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/convert
Symbolic link
1
bin/convert
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/display
Symbolic link
1
bin/display
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/identify
Symbolic link
1
bin/identify
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/import
Symbolic link
1
bin/import
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
BIN
bin/magick
Executable file
BIN
bin/magick
Executable file
Binary file not shown.
1
bin/magick-script
Symbolic link
1
bin/magick-script
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/mogrify
Symbolic link
1
bin/mogrify
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/montage
Symbolic link
1
bin/montage
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
1
bin/stream
Symbolic link
1
bin/stream
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
magick
|
||||
Loading…
Add table
Add a link
Reference in a new issue