54 lines
1.7 KiB
Ruby
54 lines
1.7 KiB
Ruby
class Urweb < Formula
|
|
desc "Ur/Web programming language"
|
|
homepage "http://www.impredicative.com/ur/"
|
|
url "http://www.impredicative.com/ur/urweb-20170720.tgz"
|
|
sha256 "8b978b9c26b02d6bff358e26c04e37fdc83363a248462f4a367b415a594d109f"
|
|
|
|
bottle do
|
|
sha256 "a7cbf10bfa6dbe42d613628d5a28b7e520bb186a142869cd72714cdf0efd854a" => :mojave
|
|
sha256 "05ac2c317acf517a4a2dd4d44a685493b801d789ea641c279530a39ee8d8a626" => :high_sierra
|
|
sha256 "dd118040a6ceabe95278dd24b5f5a40b6ccd397d5e939431ef84d89fcd7e592c" => :sierra
|
|
sha256 "0f0509d8d889c80afa2dcbcac7b769f88cb093861520782acc42f608fdd5e830" => :el_capitan
|
|
sha256 "f79d529de35aadf39e6568d257be44688f983cfa0074b71e62015305fe787fd9" => :yosemite
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "mlton" => :build
|
|
depends_on "openssl"
|
|
depends_on "gmp"
|
|
depends_on "postgresql" => :optional
|
|
depends_on "mysql" => :optional
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--with-openssl=#{Formula["openssl"].opt_prefix}
|
|
--prefix=#{prefix}
|
|
SITELISP=$prefix/share/emacs/site-lisp/urweb
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.ur").write <<~EOS
|
|
fun target () = return <xml><body>
|
|
Welcome!
|
|
</body></xml>
|
|
fun main () = return <xml><body>
|
|
<a link={target ()}>Go there</a>
|
|
</body></xml>
|
|
EOS
|
|
(testpath/"hello.urs").write <<~EOS
|
|
val main : unit -> transaction page
|
|
EOS
|
|
(testpath/"hello.urp").write "hello"
|
|
system "#{bin}/urweb", "hello"
|
|
system "./hello.exe", "-h"
|
|
end
|
|
end
|