blob: 7d60bb6e5af9b670dc22f21b27f0bf4eca95853e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require 'formula'
class Lpc21isp < Formula
  homepage 'http://lpc21isp.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/lpc21isp/lpc21isp/1.97/lpc21isp_197.tar.gz'
  sha1 '7e83c13889d56c20ab1a807975f212eac3bfdfd1'
  version '1.97'
  def install
    system "make"
    bin.install ["lpc21isp"]
  end
end
 |