diff --git a/Formula/povray.rb b/Formula/povray.rb index a3a56427b3ca0..fdc159e7406c7 100644 --- a/Formula/povray.rb +++ b/Formula/povray.rb @@ -3,8 +3,9 @@ class Povray < Formula homepage "https://www.povray.org/" url "https://github.com/POV-Ray/povray/archive/v3.7.0.8.tar.gz" sha256 "53d11ebd2972fc452af168a00eb83aefb61387662c10784e81b63e44aa575de4" - license "AGPL-3.0" + license "AGPL-3.0-or-later" revision 1 + head "https://github.com/POV-Ray/povray.git" livecheck do url :stable @@ -55,6 +56,14 @@ def install end system "./configure", *args + + # The VERSION file in the root of the package is read by the autoconf bits. + # However, on a non-case-sensitive filesystem this breaks "#include " + # deep inside the boost libraries. See https://github.com/POV-Ray/povray/issues/403 + rm "VERSION" + rm "unix/VERSION" + rm "libraries/tiff/VERSION" + system "make", "install" end