aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorColin2010-12-14 14:22:48 -0600
committerMike McQuaid2010-12-21 20:05:05 +0000
commitde6c25499862cb097705c60ccbc0844769126011 (patch)
treec3f58782c7ddbaf27ad89fe3f27a359ef1760859 /Library/Formula
parent01014c922c72ad9f2a511fdc0a7de902deb33a5a (diff)
downloadhomebrew-de6c25499862cb097705c60ccbc0844769126011.tar.bz2
Formula for daemonize
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
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