Last active
January 1, 2016 04:19
-
-
Save muratayusuke/8091442 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 [email protected]:questbeat/Lin-Xcode5.git Lin-Xcode5 Lin | |
install [email protected]: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