~ubuntu-branches/ubuntu/lucid/torrus/lucid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# Configure script for FHC compliant setup (http://www.pathname.com/fhs/)
# $Id: configure_fhs,v 1.2 2005/04/10 19:18:56 ssinyagin Exp $
# Stanislav Sinyagin <ssinyagin@yahoo.com>

if test ! -x ./configure; then
  echo "$0: cannot find ./configure" 2>&1
  echo "Usage: ./setup_tools/configure_fhs [configure options]..." 2>&1
  exit 1
fi

./configure \
 --prefix=/opt \
 --mandir=/opt/share/man \
 pkghome=/opt/torrus \
 sitedir=/etc/opt/torrus \
 "$@"