aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncftp.rb
blob: 4c2307bbc3f1b85c484d2968383a05d0adc60d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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