Skymaker 3.10.5 (new formula)
Update skymaker.rb change url to https Closes #46974. Signed-off-by: Rui Chen <chenrui333@gmail.com>
This commit is contained in:
parent
028c3fc329
commit
df8e3e5571
1 changed files with 23 additions and 0 deletions
23
Formula/skymaker.rb
Normal file
23
Formula/skymaker.rb
Normal file
|
@ -0,0 +1,23 @@
|
|||
class Skymaker < Formula
|
||||
desc "Generates fake astronomical images"
|
||||
homepage "https://www.astromatic.net/software/skymaker"
|
||||
url "https://www.astromatic.net/download/skymaker/skymaker-3.10.5.tar.gz"
|
||||
sha256 "a16f9c2bd653763b5e1629e538d49f63882c46291b479b4a4997de84d8e9fb0f"
|
||||
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "fftw"
|
||||
|
||||
def install
|
||||
system "autoconf"
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
assert_match "added", shell_output("#{bin}/sky 2>&1")
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue