Skip to content

Instantly share code, notes, and snippets.

View parisk's full-sized avatar

Paris Kasidiaris parisk

View GitHub Profile
@parisk
parisk / brew.sh
Created May 14, 2014 17:38
Install LinuxBrew
git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew
curl https://gist.githubusercontent.com/parisk/8183bab0a297e93ac65a/raw/8885447f637a5d3b043f56069e326cd5296bac9f/linuxbrew.sh >> ~/.bashrc
source ~/.bashrc
@parisk
parisk / linuxbrew.sh
Last active November 1, 2015 13:34
Install LinuxBrew
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig:/usr/lib/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib64/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH
## Setup linux brew
export LINUXBREWHOME=$HOME/.linuxbrew
export PATH=$LINUXBREWHOME/bin:$PATH
export MANPATH=$LINUXBREWHOME/man:$MANPATH
export PKG_CONFIG_PATH=$LINUXBREWHOME/lib64/pkgconfig:$LINUXBREWHOME/lib/pkgconfig:$PKG_CONFIG_PATH
export LD_LIBRARY_PATH=$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH