File: configure_fhs

package info (click to toggle)
torrus 3.00-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 4,548 kB
  • sloc: perl: 34,614; xml: 20,934; sh: 3,650; makefile: 713
file content (18 lines) | stat: -rwxr-xr-x 404 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Configure script for FHC compliant setup (http://www.pathname.com/fhs/)
# Stanislav Sinyagin <ssinyagin@k-open.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 \
 "$@"