40 lines
1.6 KiB
Ruby
40 lines
1.6 KiB
Ruby
class Zint < Formula
|
|
desc "Barcode encoding library supporting over 50 symbologies"
|
|
homepage "https://www.zint.org.uk/"
|
|
url "https://downloads.sourceforge.net/project/zint/zint/2.11.1/zint-2.11.1-src.tar.gz"
|
|
sha256 "76ca84b88483744e26fb42c6191d208f75aa09ad3d07d4bdd62b1917500b8bb8"
|
|
license "GPL-3.0-or-later"
|
|
head "https://git.code.sf.net/p/zint/code.git", branch: "master"
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(%r{url=.*?/zint[._-]v?(\d+(?:\.\d+)+)(?:-src)?\.t}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "1ea226645a7ddb4ed5915a1341cf7aa163886268400f3196d81ae1c86c8d4a8c"
|
|
sha256 cellar: :any, arm64_big_sur: "3ec3f07e1990fb95eb430a0d905370c872ba60155dbb4389932f79439d403a53"
|
|
sha256 cellar: :any, monterey: "19f1454a31e8dca4b6d48cb29c81c596cb2e449d75481e9f5d278b7c04398b20"
|
|
sha256 cellar: :any, big_sur: "1e140f68d1824b648f7ffca624fac788b2ec226dbba38b88de32247d2571f4cc"
|
|
sha256 cellar: :any, catalina: "c8ebc9a9fb91bb16df70fa6d63cc7b7012563cc720e4ca91d21ffc0ad298c926"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "f648339f12e34e52d0caa319e0767dd41e69873345273632bd6ba8a7499157ef"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "libpng"
|
|
|
|
def install
|
|
# Sandbox fix: install FindZint.cmake in zint's prefix, not cmake's.
|
|
inreplace "CMakeLists.txt", "${CMAKE_ROOT}", "#{share}/cmake"
|
|
|
|
mkdir "zint-build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/zint", "-o", "test-zing.png", "-d", "This Text"
|
|
end
|
|
end
|