leptonica 1.74.1

Closes #8462.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Benjamin Schultzer 2017-01-03 16:29:00 -08:00 committed by Mike McQuaid
parent 0e6a1ac5d2
commit 4a63a9cb1d

View file

@ -1,8 +1,8 @@
class Leptonica < Formula
desc "Image processing and image analysis library"
homepage "http://www.leptonica.org/"
url "http://www.leptonica.org/source/leptonica-1.74.tar.gz"
sha256 "e170f8a3f79e7f1742aff975ad5bb0c4a124df1532e6e38d9d71aaa5111de5a2"
url "http://www.leptonica.org/source/leptonica-1.74.1.tar.gz"
sha256 "746a517a47a3bd2a90bc8d581ca6464c10f30e91a60209735efe45b3778bec62"
bottle do
cellar :any
@ -46,7 +46,7 @@ class Leptonica < Formula
#include <leptonica/allheaders.h>
int main(int argc, char **argv) {
std::fprintf(stdout, "%d.%d", LIBLEPT_MAJOR_VERSION, LIBLEPT_MINOR_VERSION);
std::fprintf(stdout, "%d.%d.%d", LIBLEPT_MAJOR_VERSION, LIBLEPT_MINOR_VERSION, LIBLEPT_PATCH_VERSION);
return 0;
}
EOS