diff options
| author | Clemens Gruber | 2013-07-25 00:48:50 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-25 07:32:18 -0700 |
| commit | 156fd6eefe0272440f2e25a92ff6cfef2e97ca30 (patch) | |
| tree | 6260046ea90e6145e6c6683a019a1fa57514e725 /Library | |
| parent | 30b300b2c1921624dee969057feb50b875e747ab (diff) | |
| download | homebrew-156fd6eefe0272440f2e25a92ff6cfef2e97ca30.tar.bz2 | |
serf 1.3.0
Closes #21427.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/serf.rb | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Library/Formula/serf.rb b/Library/Formula/serf.rb index 2eea834a6..1093f7a2c 100644 --- a/Library/Formula/serf.rb +++ b/Library/Formula/serf.rb @@ -2,22 +2,18 @@ require 'formula' class Serf < Formula homepage 'http://code.google.com/p/serf/' - url 'http://serf.googlecode.com/files/serf-1.2.1.tar.bz2' - sha1 'f65fbbd72926c8e7cf0dbd4ada03b0d226f461fd' + url 'http://serf.googlecode.com/files/serf-1.3.0.tar.bz2' + sha1 '14ed3e1dc195016a548499b3831f3df6b2501d27' option :universal depends_on :libtool depends_on 'sqlite' - - def apr_bin - superbin or "/usr/bin" - end + depends_on 'scons' => :build def install ENV.universal_binary if build.universal? - system "./configure", "--prefix=#{prefix}", - "--with-apr=#{apr_bin}" - system "make install" + system "scons", "PREFIX=#{prefix}" + system "scons install" end end |
