aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorLarry Gilbert2014-02-02 09:32:18 +0000
committerMike McQuaid2014-02-02 09:32:18 +0000
commit5e13ec1fec35438a30ce322c25fecb6b5735ffb6 (patch)
treed8af023717557d7949335d55a2aca37a073f0732 /Library
parent3b3460e7da94af4f66c30de40a0fcdca5a10f747 (diff)
downloadhomebrew-5e13ec1fec35438a30ce322c25fecb6b5735ffb6.tar.bz2
stgit 0.17.1
* Changed home page to the Gna project page, which has more current info * Added explicit dependency on :python * Added HEAD version Closes #26297. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/stgit.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Formula/stgit.rb b/Library/Formula/stgit.rb
index 1121bb0d8..5a81878db 100644
--- a/Library/Formula/stgit.rb
+++ b/Library/Formula/stgit.rb
@@ -1,11 +1,16 @@
require 'formula'
class Stgit < Formula
- homepage 'http://www.procode.org/stgit'
- url 'http://download.gna.org/stgit/stgit-0.16.tar.gz'
- sha1 '10b62d080a4c34c2dd11de4d1c800f62b9e5018c'
+ homepage 'http://gna.org/projects/stgit/'
+ url 'http://download.gna.org/stgit/stgit-0.17.1.tar.gz'
+ sha1 '5918fd983919ab70ab191868b84e917a06556cc2'
+
+ head 'git://repo.or.cz/stgit.git'
+
+ depends_on :python
def install
+ ENV['PYTHON'] = 'python' # overrides 'python2' built into makefile
system "make", "prefix=#{prefix}", "all"
system "make", "prefix=#{prefix}", "install"
end