blob: 7673db9c56971d3f76b5557d63506afa940f46ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Jbig2enc < Formula
  homepage 'https://github.com/agl/jbig2enc'
  url 'https://github.com/agl/jbig2enc/tarball/0.28-dist'
  sha1 'ef45008c223f6e4e7c014e40dd6aefa181b71d8f'
  version '0.28'
  depends_on 'leptonica'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |