Skip to content

Commit

Permalink
Create form.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyczko authored Jan 13, 2022
1 parent 8537a2b commit 68f2798
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions form.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
class Form < Formula
desc "The FORM project for symbolic manipulation of very big expressions"
homepage "https://www.nikhef.nl/~form/"
url "https://github.com/vermaseren/form/releases/download/v4.2.1/form-4.2.1.tar.gz"
sha256 "f2722d6d4ccb034e01cf786d55342e1c21ff55b182a4825adf05d50702ab1a28"

depends_on "gmp"
depends_on "lzlib"

def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--with-zlib",
"--with-gmp",
"--prefix=#{prefix}"
system "make", "install"
end

test do
system "#{bin}/form", "-v"
end
end

0 comments on commit 68f2798

Please sign in to comment.