aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/restund.rb
blob: 63f8921ad2abd47a36e10676b804e34657319d3c (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
32
33
34
35
36
37
38
39
40
require "formula"

class Restund < Formula
  homepage "http://www.creytiv.com"
  url "http://www.creytiv.com/pub/restund-0.4.11.tar.gz"
  sha1 "7fb98e6d8dd5e48b62f5ad23d3dc5ee6546f8c15"

  bottle do
    cellar :any
    sha1 "ca362fc05e313ac4c2fc5fc761b3c502ff6c7ab9" => :yosemite
    sha1 "249056f251265110831e938cbb82cedbf294ec65" => :mavericks
    sha1 "ba868c60ec50840299ae1ae92e98e270ae9956e5" => :mountain_lion
  end

  depends_on "libre"

  # this patch is needed for restund to work on OSX, because it is
  # using select() for polling with max 1024 file descriptors.
  patch :p0 do
    url "http://www.creytiv.com/tmp/restund-homebrew.patch"
    sha1 "a7ddaf0da0396e50ffe40552eeab5436b3141180"
  end

  def install
    libre = Formula["libre"]
    system "make", "install", "PREFIX=#{prefix}",
                              "LIBRE_MK=#{libre.opt_share}/re/re.mk",
                              "LIBRE_INC=#{libre.opt_include}/re",
                              "LIBRE_SO=#{libre.opt_lib}"
    system "make", "config", "DESTDIR=#{prefix}",
                              "PREFIX=#{prefix}",
                              "LIBRE_MK=#{libre.opt_share}/re/re.mk",
                              "LIBRE_INC=#{libre.opt_include}/re",
                              "LIBRE_SO=#{libre.opt_lib}"
  end

  test do
    system "#{sbin}/restund", "-tdnf", "#{etc}/restund.conf"
  end
end