File: 0install-quick

package info (click to toggle)
mirrordir 0.10.49-intl-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,736 kB
  • ctags: 3,348
  • sloc: ansic: 27,877; sh: 10,001; cs: 194; makefile: 145; pascal: 41
file content (25 lines) | stat: -rwxr-xr-x 959 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# For super easy install just run this as root.

# I compile with lcc using:
#	make CFLAGS='-D__STRICT_ANSI__ -Dinline= -Dcaddr_t="char *" -DREGEX_MALLOC' CC=lcc

if test x$1 != x ; then
    prefix="--prefix=$1"
fi
./configure --enable-optimizations $prefix
make || exit 1
make install-strip || exit 1
echo ""
echo ""
echo "-------------------------------------------------------"
echo "Installation  complete.   If  this  did  not  appear to"
echo "give any errors,  then you may  delete  this  directory"
echo "after reading  the  copyright  notice  in  COPYING  and"
echo "reading the files README,  NEWS,  ChangeLog  and  BUGS."
echo "You may have to remove  /etc/ssocket/  between  version"
echo "updates of this software,  as well as .ssocket/ in your"
echo "home directory. Do a    make uninstall    to uninstall."
echo "********** Encryption support is still BETA ***********"
echo "-------------------------------------------------------"