-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../Formula/phcpack.rb |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
class Phcpack < Formula | ||
desc "Software package for solving polynomial systems with homotopy continuation" | ||
homepage "https://github.com/janverschelde/PHCpack" | ||
url "https://github.com/janverschelde/PHCpack/archive/refs/tags/v2.4.90.tar.gz" | ||
sha256 "7db1529b019a24e6fc2217ecccbcf3aa56f1b098bbe2f75e834f415e58c8bde7" | ||
license "GPL-3.0-only" | ||
|
||
depends_on "qd" | ||
|
||
def install | ||
Check failure on line 10 in Formula/phcpack.rb GitHub Actions / test-bot (ubuntu-latest)`brew install --verbose --build-bottle macaulay2/tap/phcpack` failed on Linux!
Check failure on line 10 in Formula/phcpack.rb GitHub Actions / test-bot (macos-12)`brew install --verbose --build-bottle macaulay2/tap/phcpack` failed on macOS Monterey (12)!
Check failure on line 10 in Formula/phcpack.rb GitHub Actions / test-bot (macos-13)`brew install --verbose --build-bottle macaulay2/tap/phcpack` failed on macOS Ventura (13)!
Check failure on line 10 in Formula/phcpack.rb GitHub Actions / test-bot (macos-14)`brew install --verbose --build-bottle macaulay2/tap/phcpack` failed on macOS Sonoma (14) on Apple Silicon!
|
||
system "make", "-j", "-C", "src/Objects", "-f", "makefile_unix", "phc" | ||
system "make", "-j", "-C", "src/Objects", "-f", "makefile_unix", "install" | ||
end | ||
|
||
test do | ||
system "true" | ||
end | ||
end |