Skip to content

Instantly share code, notes, and snippets.

View crankycoder's full-sized avatar

Victor Ng crankycoder

View GitHub Profile
@crankycoder
crankycoder / install-pygtk.sh
Created December 7, 2011 14:29 — forked from ches/install-pygtk.sh
Install PyGTK via Homebrew and virtualenv
# This LOOKS pretty straightforward, but it took awhile to sort out issues with
# py2cairo and pygobject, so I hope I've saved you some time :-)
#
# This assumes you already subscribe to a nice clean virtualenvwrapper workflow
# -- see https://gist.github.com/771394 if you need advice on getting there.
# There are some optional dependencies omitted, so if you're going to be doing
# heavy development with these libs, you may want to look into them.
#
# We go to some configure option pains to avoid polluting the system-level
# Python, and `brew link`ing Cairo which is keg-only by default.
@crankycoder
crankycoder / python26.rb
Created November 23, 2011 15:48 — forked from gabesmed/python26.rb
Python 2.6.4 homebrew formula
require 'formula'
# This formula for Python 2.6.4
# Based on Python 2.7.1 formula at:
# https://github.com/mxcl/homebrew/blob/master/Library/Formula/python.rb
class Distribute < Formula
url 'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.24.tar.gz'
md5 '17722b22141aba8235787f79800cc452'
end