aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-01-28 21:01:39 -0800
committerAdam Vandenberg2013-01-28 21:40:28 -0800
commit075a5214ff129171198df04d9d79f73703eb4053 (patch)
treee7f727cff1ddf3c5ebe0ddf5712a6f491bb2ad1d /Library/Formula
parentf1b0ea0a9f28f9281c98033302f1ecd4b3b5a169 (diff)
downloadhomebrew-075a5214ff129171198df04d9d79f73703eb4053.tar.bz2
pbc-sig: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pbc-sig.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/pbc-sig.rb b/Library/Formula/pbc-sig.rb
index 5f808bbe9..d3eda5856 100644
--- a/Library/Formula/pbc-sig.rb
+++ b/Library/Formula/pbc-sig.rb
@@ -1,14 +1,15 @@
require 'formula'
class PbcSig < Formula
- url 'http://crypto.stanford.edu/pbc/sig/files/pbc_sig-0.0.7.tar.gz'
homepage 'http://crypto.stanford.edu/pbc/sig/'
+ url 'http://crypto.stanford.edu/pbc/sig/files/pbc_sig-0.0.7.tar.gz'
sha1 'f15e4b721f95d073dfbe1a4687c490b82f7ac176'
depends_on 'pbc'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end