aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/daemonize.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/daemonize.rb b/Library/Formula/daemonize.rb
new file mode 100644
index 000000000..7c689d914
--- /dev/null
+++ b/Library/Formula/daemonize.rb
@@ -0,0 +1,15 @@
+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