diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/bazaar.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/bazaar.rb b/Library/Formula/bazaar.rb new file mode 100644 index 000000000..ef9aebbe2 --- /dev/null +++ b/Library/Formula/bazaar.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Bazaar <Formula + url 'http://launchpad.net/bzr/2.0/2.0.2/+download/bzr-2.0.2.tar.gz' + homepage 'http://bazaar-vcs.org/' + md5 '845743611ef6f1ece8e7bf9824c0bb95' + + def install + ENV.minimal_optimization + system "python setup.py build" + system "python", "setup.py", "install", "--prefix=#{prefix}" + end +end |
