aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJordan Bracco2009-11-19 04:49:34 +0100
committerMax Howell2009-12-05 15:59:37 +0000
commit2f80e013da4daa3e5d87a4b983700d71ae3f6666 (patch)
treeef0164a739f297037e2c3321d25780644233d85c /Library
parent4eb7c05abeb0c523dc87702a2f0253f305aa4f4a (diff)
downloadhomebrew-2f80e013da4daa3e5d87a4b983700d71ae3f6666.tar.bz2
Formula for Bazaar (bzr)
Fixes #152
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bazaar.rb13
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