c0b9451b58
Since Ruby 2 the ruby version issues many syntax warnings and OSX ships also with Ruby >2. Fortunately there is a Perl version on the same archive that does exactly the same thing. OSX ships with Perl 5, so we're fine. Closes Homebrew/homebrew#30411. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
11 lines
296 B
Ruby
11 lines
296 B
Ruby
require 'formula'
|
|
|
|
class Xmlformat < Formula
|
|
homepage 'http://www.kitebird.com/software/xmlformat/'
|
|
url 'http://www.kitebird.com/software/xmlformat/xmlformat-1.04.tar.gz'
|
|
sha1 '405057df0b8160775d486b671348820359b4b85d'
|
|
|
|
def install
|
|
bin.install "xmlformat.pl" => "xmlformat"
|
|
end
|
|
end
|