blob: a04625a36d73bd0b33d68259b470f3675df23867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Daemonize < Formula
  url 'https://github.com/bmc/daemonize/tarball/release-1.7.0'
  homepage 'http://software.clapper.org/daemonize/'
  md5 '192ac89303695d0019bdc27610703dca'
  version '1.7.0'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
  |