Re: [SIP-users] script to automate installing SIP
Advanced image processing toolbox for Scilab on Unix/Linux/Mac OS
Status: Beta
Brought to you by:
ricardofabbri
From: Ricardo F. <ric...@us...> - 2012-06-25 22:40:48
|
Hi, I've included the install-sip.sh script into the root of the SIP Git tree. It should help automating massive installation of SIP: http://siptoolbox.git.sourceforge.net/git/gitweb.cgi?p=siptoolbox/siptoolbox;a=blob;f=install-sip.sh;h=c7c2d2fa261b9d68a2f8b75abc550eda040e9427;hb=HEAD Regards. Ricardo Fabbri -- Linux registered user #175401 www.lems.brown.edu/~rfabbri pt.wikipedia.org/wiki/IPRJ labmacambira.sf.net ---------- Forwarded message ---------- From: Ricardo Fabbri <ric...@us...> Date: Mon, Jun 25, 2012 at 7:33 PM Subject: [Siptoolbox-commits] [git push] sip branch master updated. f75ae401e04a511c4ff751ac2154d06c77cd7f6c To: sip...@li... This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "sip". The branch, master has been updated via f75ae401e04a511c4ff751ac2154d06c77cd7f6c (commit) from 50ad98cd76c3e6ca9dd0cdf5f71db410528c01dc (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://siptoolbox.git.sf.net/git/gitweb.cgi?p=siptoolbox/siptoolbox;a=commitdiff commit f75ae401e04a511c4ff751ac2154d06c77cd7f6c Author: Ricardo Fabbri <rf...@gm...> Date: Mon Jun 25 19:33:26 2012 -0300 install-sip.sh added to help automate massive installation diff --git a/README.txt b/README.txt index 96b01d1..83cd3cd 100644 --- a/README.txt +++ b/README.txt @@ -54,29 +54,34 @@ Phone: 273.9882 Area Code: 16 International Code: 55 Contents ======== -README.txt : this file -INSTALL.txt : installation instructions -configure : configuration script (see INSTALL.txt) -Makefile : build instructions -Makefile.am : high level build instructions (for automake) -*.txt : information about SIP -config : some configuration files for compilation/installation -src : directory of C routines -macros : directory of Scilab functions - *.sci : source versions - *.bin : compiled binary versions (generated) - names : table of functions (generated) - lib : scilab library binary save (generated) -man : directory for help. - Makefile : for help formatting - *.man : nroff help file - *.cat : formatted files - whatis : short function description - -images : contain sample images used by examples and demos -win_bin : pre-compiled binary of C routines for W1nd*ws -win_util : some files to aid the installation under Wlnd0wz +README.txt : this file +INSTALL.txt : installation instructions +configure : configuration script (see INSTALL.txt) +install-sip.sh : script to automate the steps in INSTALL.txt +Makefile : low-level build instructions (used by 'make') +Makefile.am : high level build instructions (for automake) +*.txt : information about SIP +config : aux. config files and scripts for compiling/installing + install-sip.sh : +src : folder for C routines +macros : folder for Scilab functions + *.sci : source versions + *.bin : compiled binary versions (generated) + names : table of functions (generated) + lib : scilab library binary save (generated) +help : directory for help files + Makefile : for generating help files (html) + en_US : help files in US English (xml sources) + scilab_en_US_help : html help files (open in any browser) + images : images/illustration for the help files +man : obsolete directory for help. + Makefile : for help formatting + *.man : nroff help file + *.cat : formatted files + whatis : short function description +images : contains sample images used by examples and demos +extras : folder for Please send any comments and suggestions to rfabbri@(not this part) gmail d0t com - +kkkkkkkkkkkkkkkkkkkkkkk diff --git a/install-sip.sh b/install-sip.sh new file mode 100644 index 0000000..c7c2d2f --- /dev/null +++ b/install-sip.sh @@ -0,0 +1,51 @@ +#!/bin/sh +set -x +# +# DESCRIPTION +# +# This is a script to help automate massive installation of SIP. +# It has been tested under Ubuntu 12.04 LTS and a few other distros. +# +# Things I'd like to see in the future are: +# * automatic downloading, compiling and installing of third party +# libs that can make a difference, such as OpenCV Subversion (svn) and +# leptonica. +# +# PRE-REQUISITES +# +# Right now the installation comes out of the box if one first perform the +# (slightly overkill but convenient) steps in: +# +# http://wiki.nosdigitais.teia.org.br/Configuring_Ubuntu_for_Programming +# +# If you choose not to perform the above steps, then you will have to install +# a number of dependencies on a case-by-case basis, which can be annoying. +# +# USAGE +# +# sh install-sip.sh +# +# AUTHOR +# Ricardo Fabbri +# + +git clone git://siptoolbox.git.sourceforge.net/gitroot/siptoolbox/animal + +git clone git://siptoolbox.git.sourceforge.net/gitroot/siptoolbox/siptoolbox + +cd animal + +./autogen.sh +./configure +make +sudo make install + +sudo ldconfig + +cd ../siptoolbox +./autogen.sh +./configure +make +sudo make install + +make autoload ----------------------------------------------------------------------- Summary of changes: README.txt | 51 ++++++++++++++++++++++++++++----------------------- install-sip.sh | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+), 23 deletions(-) create mode 100644 install-sip.sh hooks/post-receive -- sip ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Siptoolbox-commits mailing list Sip...@li... https://lists.sourceforge.net/lists/listinfo/siptoolbox-commits Ricardo Fabbri -- Linux registered user #175401 www.lems.brown.edu/~rfabbri pt.wikipedia.org/wiki/IPRJ labmacambira.sf.net On Fri, Jun 22, 2012 at 4:41 PM, Ricardo Fabbri <ric...@us...> wrote: > Hi, > > I am attaching an initial script to automate the installation of SIP. > It has been tested under Ubuntu 12.04 LTS and a few other distros. > > Things Id like to see in the future is automatic downloading, > compiling and installing of third party > libs that can make a difference, such as OpenCV Subversion (svn) and > leptonica. Right now the installation comes out of the box if one > first perform the (slightly overkill) steps in: > > http://wiki.nosdigitais.teia.org.br/Configuring_Ubuntu_for_Programming > > > I should put this script in Git soon. > > How to use it? Just issue the following command > > sh install-sip.sh > > Best, > Ricardo Fabbri > -- > Linux registered user #175401 > www.lems.brown.edu/~rfabbri > pt.wikipedia.org/wiki/IPRJ > labmacambira.sf.net |