-
-
Save Austcool-Walker/4ca4d7d3bb152c9b9e1d9e1745cfa205 to your computer and use it in GitHub Desktop.
Revisions
-
ptrv revised this gist
Jul 7, 2011 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,15 +13,15 @@ cd zsh # Options from Ubuntu Zsh package rules file (http://launchpad.net/ubuntu/+source/zsh) ./configure --prefix=/usr/local \ --mandir=/usr/local/share/man \ --bindir=/bin \ --infodir=/usr/local/share/info \ --enable-maildir-support \ --enable-max-jobtable-size=256 \ --enable-etcdir=/etc/zsh \ --enable-function-subdirs \ --enable-site-fndir=/usr/local/share/zsh/site-functions \ --enable-fndir=/usr/local/share/zsh/functions \ --with-tcsetpgrp \ --with-term-lib="ncursesw" \ --enable-cap \ -
ptrv revised this gist
Jul 7, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ cd zsh ./Util/preconfig # Options from Ubuntu Zsh package rules file (http://launchpad.net/ubuntu/+source/zsh) ./configure --prefix=/usr/local \ --mandir=/usr/share/man \ --bindir=/bin \ --infodir=/usr/share/info \ -
nicoulaj revised this gist
Nov 25, 2010 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ # From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. # Some packages may be missing sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo git clone git://zsh.git.sf.net/gitroot/zsh/zsh -
nicoulaj revised this gist
Nov 25, 2010 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ # From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. # Some packages may be missing sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev textinfo git clone git://zsh.git.sf.net/gitroot/zsh/zsh -
nicoulaj revised this gist
Nov 25, 2010 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,14 +1,14 @@ #!/bin/sh # Build Zsh from sources on Ubuntu. # From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. # Some packages may be missing sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo git clone git://zsh.git.sf.net/gitroot/zsh/zsh cd zsh ./Util/preconfig # Options from Ubuntu Zsh package rules file (http://launchpad.net/ubuntu/+source/zsh) -
nicoulaj created this gist
Nov 25, 2010 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ #!/bin/sh # Build Zsh from sources on Ubuntu # From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. git clone git://zsh.git.sf.net/gitroot/zsh/zsh cd zsh # Some packages may be missing sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo ./Util/preconfig # Options from Ubuntu Zsh package rules file (http://launchpad.net/ubuntu/+source/zsh) ./configure --prefix=/usr \ --mandir=/usr/share/man \ --bindir=/bin \ --infodir=/usr/share/info \ --enable-maildir-support \ --enable-max-jobtable-size=256 \ --enable-etcdir=/etc/zsh \ --enable-function-subdirs \ --enable-site-fndir=/usr/local/share/zsh/site-functions \ --enable-fndir=/usr/share/zsh/functions \ --with-tcsetpgrp \ --with-term-lib="ncursesw" \ --enable-cap \ --enable-pcre \ --enable-readnullcmd=pager \ --enable-custom-patchlevel=Debian \ LDFLAGS="-Wl,--as-needed -g" make make check sudo make install sudo make install.info