diff options
| author | Pedro Vanzella | 2011-07-04 13:22:05 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2011-07-09 09:24:03 -0700 |
| commit | 45bc7ad40c15d3b4e7b643eda616924e12332ec2 (patch) | |
| tree | 9791103be578ec398de1337b5fbb35cb620ee200 | |
| parent | 7c8d84136a0788a2c511ea53e27e90f335f10386 (diff) | |
| download | homebrew-45bc7ad40c15d3b4e7b643eda616924e12332ec2.tar.bz2 | |
lpc21isp 1.79
Provides a way to flash NXP 2xxx chips via ISP
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/lpc21isp.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/lpc21isp.rb b/Library/Formula/lpc21isp.rb new file mode 100644 index 000000000..5f68f2db9 --- /dev/null +++ b/Library/Formula/lpc21isp.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Lpc21isp < Formula + url 'http://sourceforge.net/projects/lpc21isp/files/lpc21isp/1.79/lpc21isp_179.zip' + version '1.79' + homepage 'http://lpc21isp.sourceforge.net/' + md5 '67c1e2a4cebccadd6fb8ea39faf8c89e' + + def install + system "make" + bin.install ["lpc21isp"] + end +end |
