Changes

From Genome Analysis Wiki
Jump to navigationJump to search
no edit summary
Line 142: Line 142:  
In addition the shell script can make an RPM file (using alien) and will help manage
 
In addition the shell script can make an RPM file (using alien) and will help manage
 
the version for GotCloud.
 
the version for GotCloud.
 +
 +
'''Fetch the Source'''
    
<code>
 
<code>
 +
#  The easiest way:
 +
mkdir debs
 +
cd debs
 +
wget ftp://share.sph.umich.edu/gotcloud/gotcloud_src_latest.tgz
 +
 +
#  Another way:
 +
ftp share.sph.umich.edu
 +
Connected to share.sph.umich.edu.
 +
220 (vsFTPd 2.3.5)
 +
Name (share.sph.umich.edu:tpg): anonymous
 +
230 Login successful.
 +
Remote system type is UNIX.
 +
Using binary mode to transfer files.
 +
ftp> prompt
 +
Interactive mode off.
 +
ftp> cd gotcloud
 +
250 Directory successfully changed.
 +
ftp> get gotcloud_src_latest.tgz
 +
ftp> quit
 +
221 Goodbye.
 +
 +
#  Extract the source files
 +
cd ~/src                # Wherever you want the source files
 +
tar xzf path/gotcloud_src_latest.tgz
 +
</code>
 +
 +
'''Compile the Source'''
 +
 +
<code>
 +
cd ~/src
 +
cd gotcloud*
 +
cd src
 +
cat INSTALL              # Read about dependencies
 +
make clean              # Clean out cruft from a previous run
 +
make
 +
</code>
 +
 +
'''Create the Debian Package Files'''
 +
 +
 +
 +
 
#  Get the source for GotCloud
 
#  Get the source for GotCloud
  
283

edits

Navigation menu