homebrew-core/Formula/vcodex.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

27 lines
928 B
Ruby

class Vcodex < Formula
desc "Standalone vczip command and vcodex library"
homepage "http://www2.research.att.com/~astopen/download/ref/vcodex/vcodex.html"
url "http://www2.research.att.com/~astopen/download/tgz/vcodex.2013-05-31.tgz",
:user => "I accept www.opensource.org/licenses/eclipse:."
sha256 "3d690a5596d4b1a3f1f99a3511fd8cc9d65fc2b63ce0178a8d23677e72c2f83d"
version "2013-05-31"
def install
# Vcodex makefiles do not work in parallel mode
ENV.deparallelize
# make all Vcodex stuff
system "/bin/sh ./Runmake"
# install manually
bin.install Dir["bin/vc*"]
# put all includes into a directory of their own
(include + "vcodex").install Dir["include/*.h"]
lib.install Dir["lib/*.a"]
man.install "man/man3"
end
def caveats; <<-EOS.undent
We agreed to the Eclipse Public License 1.0 for you.
If this is unacceptable you should uninstall.
EOS
end
end