homebrew-core/Formula/daemonize.rb

15 lines
404 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Daemonize < Formula
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'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end