aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/twemcache.rb
blob: 84714e6a9d22d9c5f62f0c82555b2feb29b0ee00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require 'formula'

class Twemcache < Formula
  homepage 'https://github.com/twitter/twemcache'
  head 'https://github.com/twitter/twemcache.git'
  url "https://github.com/twitter/twemcache/archive/v2.6.0.tar.gz"
  sha256 '6e0e9361bda46bdaa577c7eed6cd829aeca442b2c3b4f84b250039c86027ce05'

  option "enable-debug", "Debug mode with assertion panics enabled"

  depends_on :autoconf
  depends_on :automake
  depends_on 'libevent'

  def install
    # After the deprecation of GitHub Downloads, we don't have distribution
    # downloads anymore.  Everything is now a repository download from version
    # tags.
    system "autoreconf", "-ivf"

    args = ["--prefix=#{prefix}"]
    if build.include? "enable-debug"
      ENV['CFLAGS'] += "-ggdb3 -O0"
      args << "--enable-debug=full"
    end

    system "./configure", *args
    system "make"
    system "make install"
  end
end