This file contains 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
$ brew install --HEAD gregorio | |
==> Installing gregorio | |
==> Checking out svn://svn.gna.org/svn/gregorio/trunk | |
==> autoreconf -f -i | |
==> ./configure --prefix=/usr/local/Cellar/gregorio/HEAD | |
==> make | |
==> make install | |
==> Your sudo password is required to copy fonts | |
and style files to your TeX ins | |
==> cd fonts && sudo ./install.py |
This file contains 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
#!/usr/bin/env python | |
#coding=utf8 | |
from cStringIO import StringIO | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
from email.header import Header | |
from email import Charset | |
from email.generator import Generator | |
from email.utils import formataddr | |
import smtplib |
This file contains 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
$ scons -Q INSTALL_PREFIX=/usr/local/Cellar/freesteam/2.1 | |
Checking for ASCEND... found (ASCEND_CPPPATH = ['/Applications/ASCEND.app/Contents/Headers']) | |
GSL_STATIC = 0 | |
GSL_LIBS = ['gsl', 'gslcblas'] | |
GSL_LIBPATH = ['/usr/local/Cellar/gsl/1.15/lib'] | |
GSL_CPPPATH = ['/usr/local/Cellar/gsl/1.15/include'] | |
GSL_STATICLIBS = None | |
Package xcb-shm was not found in the pkg-config search path. | |
Perhaps you should add the directory containing `xcb-shm.pc' | |
to the PKG_CONFIG_PATH environment variable |
This file contains 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
--- SConstruct_old 2012-09-25 19:57:24.000000000 -0500 | |
+++ SConstruct 2013-01-26 14:13:48.000000000 -0600 | |
@@ -166,6 +166,15 @@ | |
, toolpath = ['scons'] | |
, tools = ['mingw']+tools | |
) | |
+if platform.system()=="Darwin": | |
+ os.environ['PATH'] += ':/Applications/ASCEND.app/Contents' | |
+ env = Environment( | |
+ ENV={"PATH":os.environ['PATH'], |
This file contains 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
$ HOMEBREW_MAKE_JOBS=1 VERBOSE=1 brew install tk | |
==> Downloading http://sourceforge.net/projects/tcl/files/Tcl/8.5.13/tk8.5.13-src.tar.gz | |
Already downloaded: /Users/ntmoe/Library/Caches/Homebrew/tk-8.5.13.tar.gz | |
/usr/bin/tar xf /Users/ntmoe/Library/Caches/Homebrew/tk-8.5.13.tar.gz | |
==> Patching | |
/usr/bin/patch -f -p1 -i 000-homebrew.diff | |
patching file macosx/tkMacOSXClipboard.c | |
patching file macosx/tkMacOSXDraw.c | |
==> ./configure --prefix=/usr/local/Cellar/tk/8.5.13 --mandir=/usr/local/Cellar/tk/8.5.13/share/man --with-tcl=/usr/local/lib --enable-64bit | |
./configure --prefix=/usr/local/Cellar/tk/8.5.13 --mandir=/usr/local/Cellar/tk/8.5.13/share/man --with-tcl=/usr/local/lib --enable-64bit |
This file contains 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
$ brew list | |
atk freesteam glib ipopt lynx pkg-config rlwrap sundials | |
autoconf freetype gmp jasper macvim py2cairo scipy swig | |
automake fuse4x gnu-sed jpeg mercurial pygobject scons tbb | |
cairo fuse4x-kext gnu-typist libffi mpfr pygtk serf vim | |
calc gdbm gnu-units libmodbus neon pyqt sip wget | |
coreutils gdk-pixbuf graphviz libmpc numpy python sqlite xz | |
cunit gettext gsl libpng pango qt sshfs zeromq | |
doxygen gfortran gtk+ libtiff pcre r subversion | |
fontconfig git hub libtool pixman readline suite-sparse |
This file contains 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
--- SConstruct 2013-01-27 20:58:04.000000000 -0600 | |
+++ SConstruct_fixed 2013-01-27 21:03:18.000000000 -0600 | |
@@ -1990,7 +1990,7 @@ | |
def CheckLModern(context): | |
context.Message("Checking for lmodern...") | |
- b = context.env.get("DVI") | |
+ b = context.env.DVI | |
if not b: | |
context.Result(False) |
This file contains 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
#include <stdio.h> | |
#include <gsl/gsl_vector.h> | |
static int region1_f(const gsl_vector *x); | |
int main (void) | |
{ | |
gsl_vector * x = gsl_vector_alloc (3); | |
int i; |
This file contains 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
$ scons | |
scons: Reading SConscript files ... | |
Checking for ASCEND... found (ASCEND_CPPPATH = ['/Applications/ASCEND.app/Contents/Headers']) | |
GSL_STATIC = 0 | |
GSL_LIBS = ['gsl', 'gslcblas'] | |
GSL_LIBPATH = ['/usr/local/Cellar/gsl/1.15/lib'] | |
GSL_CPPPATH = ['/usr/local/Cellar/gsl/1.15/include'] | |
GSL_STATICLIBS = None | |
Checking for C function fprintf()... (cached) yes | |
Checking for C header file /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h... (cached) yes |
This file contains 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
$ scons | |
scons: Reading SConscript files ... | |
Checking for ASCEND... found (ASCEND_CPPPATH = ['/Applications/ASCEND.app/Contents/Headers']) | |
GSL_STATIC = 0 | |
GSL_LIBS = ['gsl', 'gslcblas'] | |
GSL_LIBPATH = ['/usr/local/Cellar/gsl/1.15/lib'] | |
GSL_CPPPATH = ['/usr/local/Cellar/gsl/1.15/include'] | |
GSL_STATICLIBS = None | |
Checking for C function fprintf()... (cached) yes | |
Checking for C header file /usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h... (cached) yes |
OlderNewer