a5b940cec9
Closes Homebrew/homebrew#26503. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
30 lines
817 B
Ruby
30 lines
817 B
Ruby
require 'formula'
|
|
|
|
class Cc65 < Formula
|
|
homepage 'http://www.cc65.org/'
|
|
head 'svn://svn.cc65.org/cc65/trunk'
|
|
url 'ftp://ftp.musoftware.de/pub/uz/cc65/cc65-sources-2.13.3.tar.bz2'
|
|
sha1 '925c6edfcef7057e24ecb0704fa07210faec07bc'
|
|
|
|
conflicts_with 'grc', :because => 'both install `grc` binaries'
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
ENV.no_optimization
|
|
system "make", "-f", "make/gcc.mak", "prefix=#{prefix}", "libdir=#{share}"
|
|
system "make", "-f", "make/gcc.mak", "install", "prefix=#{prefix}", "libdir=#{share}"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Library files have been installed to:
|
|
#{share}/cc65
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"foo.c").write "int main (void) { return 0; }"
|
|
|
|
system bin/"cl65", "foo.c" # compile and link
|
|
assert File.exist?("foo") # binary
|
|
end
|
|
end
|