File: README_Linux.txt

package info (click to toggle)
afflib 3.5.12-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 4,168 kB
  • ctags: 4,723
  • sloc: cpp: 21,800; ansic: 14,696; sh: 9,697; makefile: 531; python: 95
file content (36 lines) | stat: -rw-r--r-- 848 bytes parent folder | download | duplicates (10)
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
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# INSTALLING ON Ubuntu/Kbuntu/Debian LINUX
#

if [ -r /usr/bin/apt-get ] ; 
then

  echo you are running on a system with apt-get.

  # Edit /etc/apt/sources.list and uncomment the lines with "universe"
  apt-get update

  # General build tools:
  apt-get -y install make gcc g++ 

  # Libraries required for AFFLIB:
  apt-get -y install zlib1g-dev libssl-dev libncurses5-dev 
  apt-get -y install libcurl4-openssl-dev libexpat1-dev libreadline5-dev

  # Libraries if you want to make a release:
  apt-get -y install automake1.9  autoconf libtool
  exit 0
fi

if [ -r /usr/bin/yum ] ; 
then
  #================================================================
  #INSTALLOING ON FEDORA CORE 6:
  #
  # When you build Linux, tell it that you want developer tools.
  #
  yum upgrade all
  yum install libssl-dev libncurses5-dev 
  exit 0
fi