30 lines
1.1 KiB
Ruby
30 lines
1.1 KiB
Ruby
class Nyancat < Formula
|
|
desc "Renders an animated, color, ANSI-text loop of the Poptart Cat"
|
|
homepage "https://github.com/klange/nyancat"
|
|
url "https://github.com/klange/nyancat/archive/1.5.1.tar.gz"
|
|
sha256 "c948c769d230b4e41385173540ae8ab1f36176de689b6e2d6ed3500e9179b50a"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "39ee4366d3f00c794c4b9225faea19f3901d38e7dc9622eb710d2aa3c35e0ad7" => :high_sierra
|
|
sha256 "089bfd3ca2a9b55dc36780e1bf2613b58c73062d275f852f8e40ab1e9691f230" => :sierra
|
|
sha256 "7edb311fcaaf95c46bcd4c50846ea00423bb91ca11f50c07555a371ff0e05318" => :el_capitan
|
|
sha256 "d9c2f795fb32f1201ddd421911d6d36e7f5318f410fb543fb4bda39d731454c8" => :yosemite
|
|
sha256 "4e6af8e2d8c954b4008a53bc25707ce0c7ff0c913b4ecfe8e7ee9526b6aa581b" => :mavericks
|
|
end
|
|
|
|
# Makefile: Add install directory option
|
|
patch do
|
|
url "https://github.com/klange/nyancat/pull/34.patch?full_index=1"
|
|
sha256 "24a0772d2725e151b57727ce887f4b3911d19e875785eb7e13a68f4b987831e8"
|
|
end
|
|
|
|
def install
|
|
system "make"
|
|
system "make", "install", "instdir=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/nyancat", "--frames", "1"
|
|
end
|
|
end
|