3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
345 B
Ruby
15 lines
345 B
Ruby
require 'formula'
|
|
|
|
class Jbig2enc < Formula
|
|
homepage 'https://github.com/agl/jbig2enc'
|
|
url 'https://github.com/agl/jbig2enc/archive/0.28-dist.tar.gz'
|
|
sha1 'd2d73f732168eeb6fa18962dbe7743337363c3b6'
|
|
version '0.28'
|
|
|
|
depends_on 'leptonica'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|