File: reinstall

package info (click to toggle)
ifeffit 2%3A1.2.10a-5
  • links: PTS
  • area: contrib
  • in suites: lenny
  • size: 11,624 kB
  • ctags: 5,599
  • sloc: fortran: 33,927; ansic: 8,391; makefile: 4,188; sh: 4,060; python: 3,273; perl: 3,146; tcl: 95
file content (22 lines) | stat: -rwxr-xr-x 470 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# this will do a full build and install of the 
# ifeffit library, perl and python extension
#
# it assumes root permissions, and that the
# build procedure runs smoothly and correctly
#
# this is really intended for _remaking_ the
# ifeffit installation after a change to the
# source code of the libraries or extensions

# ./configure
make
make install
cd wrappers/python
  sh Build 
  sh Install
cd ../perl
  perl Makefile.PL 
  make install
  make clean