aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/daemonize.rb
blob: 029cde13f4e6c1396bb91b3e67c753be65c45fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "formula"

class Daemonize < Formula
  homepage "http://software.clapper.org/daemonize/"
  url "https://github.com/bmc/daemonize/archive/release-1.7.5.tar.gz"
  sha1 "aa0edb1a71a898df0167c2bd426e76c187e19b49"

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end