~ubuntu-branches/ubuntu/precise/radare2-bindings/precise

« back to all changes in this revision

Viewing changes to configure

  • Committer: Package Import Robot
  • Author(s): Sebastian Reichel
  • Date: 2011-12-06 02:13:31 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111206021331-y2o5qiwzoo7uxocg
Tags: 0.9-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        sh ${VPATH}/config.guess
57
57
        return
58
58
fi
59
 
CPU="`uname -m|sed -e 's, ,,g'`"
60
 
OS="`uname -s|tr '[A-Z]' '[a-z]'`"
 
59
CPU="`uname -m|sed -e 's, ,,g'|cut -d - -f 1`"
 
60
OS="`uname -s|tr A-Z a-z`"
61
61
GNU="`uname --help 2>&1 | grep gnu`"
62
62
[ "${GNU}" ] && OS="${OS}-gnu"
63
63
[ "${CPU}" = ppc ] && CPU="powerpc"
96
96
: ${INSTALL_PROGRAM:=${INSTALL} -m 755 -s}
97
97
: ${INSTALL_MAN:=${INSTALL} -m 444}
98
98
: ${INSTALL_LIB:=${INSTALL} -c}
99
 
 PKGNAME='radare2-bindings' ; VERSION='0.8.8' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
 
99
 PKGNAME='radare2-bindings' ; VERSION='0.9' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
100
100
}
101
101
                
102
102
show_usage() {
103
103
cat <<EOF2
104
 
'configure' configures radare2-bindings-0.8.8 to adapt to many kinds of systems.
 
104
'configure' configures radare2-bindings-0.9 to adapt to many kinds of systems.
105
105
 
106
106
Usage: ./configure [OPTION]... [VAR=VALUE]...
107
107
 
130
130
  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
131
131
  --libdir=DIR           object code libraries [EPREFIX/lib]
132
132
  --includedir=DIR       C header files [PREFIX/include]
133
 
  --infodir=DIR          info documentation [PREFIX/info]
134
 
  --mandir=DIR           man documentation [PREFIX/man]
 
133
  --infodir=DIR          info documentation [DATADIR/info]
 
134
  --mandir=DIR           man documentation [DATADIR/man]
135
135
 
136
136
System types:
137
137
  --build=BUILD          configure for building on BUILD [guessed]
169
169
}
170
170
 
171
171
show_version() {
172
 
echo "radare2-bindings-0.8.8 configuration script done with acr v0.8.6.
 
172
echo "radare2-bindings-0.9 configuration script done with acr v0.8.6.
173
173
The 'Free Software Foundation' message is only for autodetection.
174
174
Originally written by pancake <youterm.com>."
175
175
exit 0
187
187
        show_version ; ;;
188
188
"-r"|"--r"|"--report")
189
189
echo "PKGNAME:   radare2-bindings"
190
 
echo "VERSION:   0.8.8"
 
190
echo "VERSION:   0.9"
191
191
echo "LANGS:     c c++"
192
192
echo "PKG-CONFIG:  r_core"
193
193
echo "FLAGS:     --enable-devel --with-cc=gcc --with-cxx=g++ --with-ostype=auto"