Browse Source

Sleekify setup_env

master
Jonathan "Duke" Leto 10 years ago
parent
commit
7500809096
  1. 17
      bin/setup_env

17
bin/setup_env

@ -1,20 +1,13 @@
#!/bin/sh
# Setup a Duke Leto approved work environment
GITGZ=http://kernel.org/pub/software/scm/git/git-1.7.4.1.tar.gz
#!/bin/bash
# Setup a Duke Leto approved env, assuming git is installed
cd $HOME
mkdir git
cd git
wget 2>&1 && { echo "no wget, bailing"; exit 1; }
wget $GITGZ; tar zxvpf $GITGZ; cd git-1.7.4.1; gmake prefix=$HOME NO_CURL=1 install;
echo "Cloning Util.git"
git clone git://github.com/leto/Util.git
git clone git://github.com/leto/Util.git util
mv Util util
cd $HOME
echo "Symlinking config files and ~/bin"
$HOME/git/util/bin/shadow_config
@ -23,7 +16,3 @@ $HOME/git/util/bin/cpanm local::lib
perl -Mlocal::lib >> ~/.bashrc.local
source .bashrc
cpanm LWP::UserAgent
cpanm TAP::Harness::Archive
cd git
git clone git://github.com/parrot/parrot.git

Loading…
Cancel
Save