Terry.Li-彬

虚其心,可解天下之问;专其心,可治天下之学;静其心,可悟天下之理;恒其心,可成天下之业。

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  143 随笔 :: 344 文章 :: 130 评论 :: 0 Trackbacks
https://github.com/fly2wind/TSShellScript

#!/bin/sh
########################################################################################
#
# Install JDK Script
#
# Shawn Ma
#
########################################################################################
# Define
TARGET=OTP_R15B03-1.tar.gz
SOURCE=https://nodeload.github.com/erlang/otp/tar.gz/OTP_R15B03-1

# Create a build directory
mkdir -p /opt/install/erlang && cd /opt/install/erlang

# Prepare for compilation source
curl -o $TARGET $SOURCE
mkdir -p tmp && tar -zxvf $TARGET -C tmp

# Install build dependencies
yum install -y gcc gcc-c++ make cmake autoconf automake
yum install -y ncurses-devel openssl-devel

# Create a User Group

# Compile and deploy
mv tmp/* source && cd source
./otp_build autoconf
./configure \
--prefix=/opt/environment/erlang/R15B03 \
--enable-threads \
--enable-smp-support \
--enable-kernel-poll \
--enable-hipe \
--without-termcap \
--without-javac \
--with-ssl
make
make install

# Postinstallation setup
export PATH=$PATH:/opt/environment/erlang/R15B03/bin

# Configuration

# Additional
# export PATH USER
sed -i '/export PATH=/a\export PATH=$PATH:\/opt\/environment\/erlang\/R15B03\/bin' /etc/profile

posted on 2013-01-09 14:57 礼物 阅读(1876) 评论(0)  编辑  收藏 所属分类: Linux