Sha256: ce764f116d3bee3fe6ac778693ae4b326670503102fe498a1195515435047abb
Contents?: true
Size: 1.74 KB
Versions: 3
Compression:
Stored size: 1.74 KB
Contents
#!/bin/sh prefix=/home/vagrant/work/groonga/groonga/packages/windows/dist-x86 exec_prefix=${prefix} exec_prefix_set=no usage() { cat <<EOF Usage: mecab-config [OPTIONS] Options: [--cxx] [--prefix[=DIR]] [--exec-prefix[=DIR]] [--libs] [--cflags] [--dicdir] [--libexecdir] [--sysconfdir] [--libs-only-L] [--libs-only-l] [--inc-dir] [--help] [--version] EOF exit $1 } if test $# -eq 0; then usage 1 fi cflags=false libs=false while test $# -gt 0; do case "$1" in -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; *) optarg= ;; esac case "$1" in --cxx) echo i686-w64-mingw32-g++ ;; --cc) echo i686-w64-mingw32-gcc ;; --prefix=*) prefix=$optarg if test $exec_prefix_set = no ; then exec_prefix=$optarg fi ;; --prefix) echo $prefix ;; --exec-prefix=*) exec_prefix=$optarg exec_prefix_set=yes ;; --exec-prefix) echo $exec_prefix ;; --version) echo 0.98 exit 0 ;; --help) usage 0 ;; --cflags) if test ${prefix}/include != /usr/include ; then includes=-I${prefix}/include fi echo $includes ;; --libs) echo -L${exec_prefix}/lib -lmecab -lstdc++ ;; --dicdir) echo ${exec_prefix}/lib/mecab/dic ;; --inc-dir) echo ${prefix}/include ;; --libs-only-L) echo ${exec_prefix}/lib ;; --libs-only-l) echo -lmecab -lstdc++ | sed s/-l//g; ;; --libexecdir) echo /home/vagrant/work/groonga/groonga/packages/windows/dist-x86/libexec/mecab ;; --sysconfdir) echo ${prefix}/etc ;; *) usage exit 1 ;; esac shift done exit 0
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rroonga-4.0.1-x86-mingw32 | vendor/local/bin/mecab-config |
rroonga-4.0.0-x86-mingw32 | vendor/local/bin/mecab-config |
rroonga-3.1.2-x86-mingw32 | vendor/local/bin/mecab-config |