Skip to content

Instantly share code, notes, and snippets.

@jasonsanjose
Created June 11, 2013 17:56
Show Gist options
  • Save jasonsanjose/5759148 to your computer and use it in GitHub Desktop.
Save jasonsanjose/5759148 to your computer and use it in GitHub Desktop.
WIP brackets ubuntu setup
#!/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