Created
June 11, 2013 17:56
-
-
Save jasonsanjose/5759148 to your computer and use it in GitHub Desktop.
WIP brackets ubuntu setup
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 | |
# install git, 7zip | |
sudo apt-get install -qq --assume-yes git p7zip-full libgtk2.0-dev | |
# clone brackets-shell | |
git clone https://github.com/adobe/brackets-shell.git -b jasonsanjose/linux | |
# run setup | |
pushd brackets-shell | |
./scripts/setup_linux_build.sh | |
make | |
popd | |
# clone brackets | |
git clone https://github.com/adobe/brackets.git -b jasonsanjose/linux | |
pushd brackets | |
git submodule update --init --recursive | |
popd | |
# package www files | |
pushd brackets-shell | |
./installer/linux/stage_for_packaging.sh | |
popd | |
echo "BUILD COMPLETE" | |
./brackets-shell/installer/linux/staging/Brackets |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment