aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/ncftp.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ncftp.rb b/Library/Formula/ncftp.rb
new file mode 100644
index 000000000..4c2307bbc
--- /dev/null
+++ b/Library/Formula/ncftp.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+class Ncftp <Formula
+ @homepage='http://www.ncftp.com'
+ @url='ftp://ftp.ncftp.com/ncftp/ncftp-3.2.3-src.tar.gz'
+ @md5='f08238032ab247aa78f935edfc4db9fb'
+
+ def install
+ system "./configure --disable-universal --disable-precomp --prefix='#{prefix}'"
+ system "make"
+ system "make install"
+ end
+end \ No newline at end of file