diff options
| author | James Whitehead II | 2009-09-07 13:21:11 +0100 |
|---|---|---|
| committer | Max Howell | 2009-09-14 20:33:46 +0100 |
| commit | d946aa4ee3c8b86e5463a6d1795a57fec6ef1470 (patch) | |
| tree | efb16b429e482147a5ea0c345c7e7c35d2657194 | |
| parent | 64696d3201a5fd7b06c83734db27e58a6904c65e (diff) | |
| download | homebrew-d946aa4ee3c8b86e5463a6d1795a57fec6ef1470.tar.bz2 | |
Aria2 formula
aria2 is a multi-protocol & multi-source, cross platform download utility. The
supported protocols are HTTP(S), FTP, BitTorrent (DHT, PEX, MSE/PE and
WEB-Seeding), and Metalink.
| -rw-r--r-- | Library/Formula/aria2.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/aria2.rb b/Library/Formula/aria2.rb new file mode 100644 index 000000000..33ee0d5e7 --- /dev/null +++ b/Library/Formula/aria2.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +class Aria2 <Formula + @url='http://kent.dl.sourceforge.net/project/aria2/stable/aria2-1.5.2/aria2-1.5.2.tar.bz2' + @homepage='http://aria2.sourceforge.net/' + @md5='13ffefebdc4df4956721801fe74e01df' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
