8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
467 B
Ruby
15 lines
467 B
Ruby
require 'formula'
|
|
|
|
class Lpc21isp < Formula
|
|
homepage 'http://lpc21isp.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/lpc21isp/lpc21isp/1.85/lpc21isp_185.tar.gz'
|
|
sha1 '5548874c88b0b34c253e12a36f3df04c8768309e'
|
|
version '1.85'
|
|
|
|
def install
|
|
# Can't statically link on OSX, so we'll remove that from the Makefile
|
|
inreplace 'Makefile', "CFLAGS += -Wall -static", "CFLAGS += -Wall"
|
|
system "make"
|
|
bin.install ["lpc21isp"]
|
|
end
|
|
end
|