diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jemalloc.rb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Library/Formula/jemalloc.rb b/Library/Formula/jemalloc.rb index d29c49951..1b7c8ec43 100644 --- a/Library/Formula/jemalloc.rb +++ b/Library/Formula/jemalloc.rb @@ -1,9 +1,7 @@ -require 'formula' - class Jemalloc < Formula - homepage 'http://www.canonware.com/jemalloc/download.html' - url 'http://www.canonware.com/download/jemalloc/jemalloc-3.6.0.tar.bz2' - sha1 '40c0892b172e5dc14a6cea6fe4edda7dea4f3a68' + homepage "http://www.canonware.com/jemalloc/download.html" + url "http://www.canonware.com/download/jemalloc/jemalloc-3.6.0.tar.bz2" + sha1 "40c0892b172e5dc14a6cea6fe4edda7dea4f3a68" head "https://github.com/jemalloc/jemalloc.git" bottle do @@ -15,8 +13,8 @@ class Jemalloc < Formula end def install - system './configure', '--disable-debug', "--prefix=#{prefix}" - system 'make install' + system "./configure", "--disable-debug", "--prefix=#{prefix}" + system "make", "install" # This otherwise conflicts with google-perftools mv "#{bin}/pprof", "#{bin}/jemalloc-pprof" |
