homebrew-core/Formula/daemonize.rb
Colin 10d24bdc32 Formula for daemonize
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-12-21 20:05:05 +00:00

15 lines
412 B
Ruby

require 'formula'
class Daemonize <Formula
url 'https://github.com/bmc/daemonize/tarball/release-1.6.1'
homepage 'http://software.clapper.org/daemonize/'
md5 'bee4b67382f9969cae72b06038a4ae8e'
version '1.6.1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end