d9ef821678
Closes Homebrew/homebrew#47078. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
16 lines
510 B
Ruby
16 lines
510 B
Ruby
class Icon < Formula
|
|
desc "General-purpose programming language"
|
|
homepage "http://www.cs.arizona.edu/icon/"
|
|
url "https://www.cs.arizona.edu/icon/ftp/packages/unix/icon-v951src.tgz"
|
|
sha256 "062a680862b1c10c21789c0c7c7687c970a720186918d5ed1f7aad9fdc6fa9b9"
|
|
version "9.5.1"
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
system "make", "Configure", "name=posix"
|
|
system "make"
|
|
bin.install "bin/icon", "bin/icont", "bin/iconx"
|
|
doc.install Dir["doc/*"]
|
|
man1.install Dir["man/man1/*.1"]
|
|
end
|
|
end
|