aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEric Himmelreich2010-01-24 01:20:20 -0500
committerAdam Vandenberg2010-01-31 11:11:29 -0800
commitf0a794182cc4c0ec3369cb1998a4cba0334a528e (patch)
treea56378f272de08732d0ddeaa028e290519841be9 /Library/Formula
parentb80a5aa75f4f419ad9532052469724e60d8e71b0 (diff)
downloadhomebrew-f0a794182cc4c0ec3369cb1998a4cba0334a528e.tar.bz2
newbrew for mktorrent
Signed-off-by: Adam Vandenberg <flangy@gmail.com> Fixed install path.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mktorrent.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mktorrent.rb b/Library/Formula/mktorrent.rb
new file mode 100644
index 000000000..ba26a671a
--- /dev/null
+++ b/Library/Formula/mktorrent.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Mktorrent <Formula
+ url 'http://downloads.sourceforge.net/mktorrent/mktorrent-1.0.tar.gz'
+ homepage 'http://mktorrent.sourceforge.net/'
+ md5 '0da00209da96a0dc39efbb6eb5b4d8ff'
+
+ def install
+ system "make USE_PTHREADS=1 USE_OPENSSL=1 USE_LONG_OPTIONS=1"
+ bin.install "mktorrent"
+ end
+end