homebrew-core/Formula/daemonize.rb

15 lines
411 B
Ruby
Raw Normal View History

2014-07-21 02:24:10 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Daemonize < Formula
2014-07-21 02:24:10 +00:00
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