File: autogen.sh

package info (click to toggle)
jp2a 1.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,076 kB
  • sloc: ansic: 2,244; sh: 159; makefile: 51
file content (10 lines) | stat: -rwxr-xr-x 196 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
autoreconf -vi

while (( "$#" )); do
  if [ $1 == "-c" ]; then
    ./configure --with-jpeg-prefix=/usr/local \
                --with-curl-config=`which curl-config`
  fi
  shift
done