2010-12-14 20:22:48 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Daemonize < Formula
|
2010-12-14 20:22:48 +00:00
|
|
|
homepage 'http://software.clapper.org/daemonize/'
|
2012-06-08 05:21:48 +00:00
|
|
|
url 'https://github.com/bmc/daemonize/tarball/release-1.7.3'
|
|
|
|
sha1 'c394ecb6e3db00d721e88a35a298a0a6dce6b133'
|
2010-12-14 20:22:48 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|