Skip to content

Instantly share code, notes, and snippets.

@muratayusuke
Last active January 1, 2016 04:19
Show Gist options
  • Save muratayusuke/8091442 to your computer and use it in GitHub Desktop.
Save muratayusuke/8091442 to your computer and use it in GitHub Desktop.
#!/bin/bash
function install(){
REPO=$1
DIR=$2
TARGET=$3
BUILD_DIR=~/buildxcodeplugins/work
mkdir -p ${BUILD_DIR}
rm -rf ${BUILD_DIR}/*
pushd ${BUILD_DIR}
git clone ${REPO}
xcodebuild -project ${BUILD_DIR}/${DIR}/${TARGET}.xcodeproj -configuration Release clean build
popd
}
install git@github.com:questbeat/Lin-Xcode5.git Lin-Xcode5 Lin
install git@github.com:ksuther/KSImageNamed-Xcode.git KSImageNamed-Xcode KSImageNamed
# install Alcatraz
curl -fsSL https://raw.github.com/supermarin/Alcatraz/master/Scripts/install.sh | sh
# install ClangFormat from Alcatraz GUI
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment