source: local/greenstone3/darwin-64bit/gs3-setup.sh@ 32493

Last change on this file since 32493 was 32493, checked in by ak19, 6 years ago

Changes to 64 bit darwin local folder that works to compile an svn checkout on high sierra mac with checkout.gnomelib set to true. Can't compile imagemagick yet however. 1. adding gs3-devel.sh 2. Modifying local/gs3-setup.sh to have (commented out) lines for adding a custom SVN to environment. I needed svn v 1.9.9 for svn commands to work for me with the release kits and perhaps regular GS3 svn code too, so I would activate these lines by removing the comment signs.

File size: 717 bytes
Line 
1
2#-- Ant --
3
4if [ "x$ANT_HOME" = "x" ] ; then
5
6 ANT_HOME=`pwd`/apache-ant-1.9.6
7 export ANT_HOME
8 PATH=$ANT_HOME/bin:$PATH
9 export PATH
10
11 echo "+ Setting ANT_HOME to:"
12 echo "+ $ANT_HOME"
13 echo "+ and updating PATH"
14fi
15
16#-- Java --
17
18##export JAVA_HOME=/System//Library/Frameworks/JavaVM.framework/Home
19#export JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
20JAVA_HOME=`/usr/libexec/java_home`
21export JAVA_HOME
22PATH=$JAVA_HOME/bin:$PATH
23echo "+ Set JAVA_HOME to $JAVA_HOME and updated PATH"
24
25#-- SVN --
26
27# need SVN 1.9 for release-kits (1.9.9 works for me)
28#SVN_HOME=/Users/Shared/RELEASES/subversion
29#PATH=$SVN_HOME/bin:$PATH
30#echo "+ Put svn at $SVN_HOME on PATH"
31
32
33export PATH
34
Note: See TracBrowser for help on using the repository browser.