~ubuntu-branches/ubuntu/oneiric/ifeffit/oneiric

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