Formula for Bazaar (bzr)

Fixes Homebrew/homebrew#152
master
Jordan Bracco 2009-11-19 04:49:34 +01:00 committed by Max Howell
parent ddff4910f4
commit 3558cc3b95
1 changed files with 13 additions and 0 deletions

13
Formula/bazaar.rb Normal file
View File

@ -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