homebrew-core/Formula/ossp-uuid.rb

48 lines
2.2 KiB
Ruby

class OsspUuid < Formula
desc "ISO-C API and CLI for generating UUIDs"
homepage "https://web.archive.org/web/www.ossp.org/pkg/lib/uuid/"
url "https://deb.debian.org/debian/pool/main/o/ossp-uuid/ossp-uuid_1.6.2.orig.tar.gz"
sha256 "11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0"
revision 2
livecheck do
url "https://deb.debian.org/debian/pool/main/o/ossp-uuid/"
regex(/href=["']?ossp-uuid[._-]v?(\d+(?:\.\d+)+)\.orig\.t/i)
end
bottle do
sha256 cellar: :any, arm64_big_sur: "e0ce19ff28fdcdd2f39dfc8706124f4d9b75e5fc3865ba2fc17c1de2fb9b9f29"
sha256 cellar: :any, big_sur: "610cf9d70494965c79a4f1fc39a7b9e2854efa0e69fdd152cf54485e2d6b7958"
sha256 cellar: :any, catalina: "fd727fb38c48eda8d6bcb36be17e281b2152a54144298d39cab50ec7743e8a95"
sha256 cellar: :any, mojave: "a6852dac557e1b804a240b4f558d9b2e262adebb64424061f2ee8002a3d19476"
sha256 cellar: :any, high_sierra: "a04214b22c58bd5167778925cb9e55b98f28330bcc6c6a37929e6085ea3a0162"
sha256 cellar: :any, sierra: "3c15cd0e25e3039e0d05b94d14b714745cec3033863d5dc7a6d9ddd7cacc1c71"
sha256 cellar: :any, el_capitan: "ac4456fc1c29db7e0d565ebdd392cf827be315b52c9eb3abcd113c4c7b981f25"
sha256 cellar: :any, yosemite: "c6cfa39816d19fa8d4586d6a364cd17e3a089ea018242875dc371731578a4ac7"
sha256 cellar: :any, mavericks: "5253f4fab035aca3ca3b867ce0d081812eb17fe0dcaab6599087abaa385c478d"
end
def install
# upstream ticket: http://cvs.ossp.org/tktview?tn=200
# pkg-config --cflags uuid returns the wrong directory since we override the
# default, but uuid.pc.in does not use it
inreplace "uuid.pc.in" do |s|
s.gsub!(/^(exec_prefix)=\$\{prefix\}$/, '\1=@\1@')
s.gsub! %r{^(includedir)=\$\{prefix\}/include$}, '\1=@\1@'
s.gsub! %r{^(libdir)=\$\{exec_prefix\}/lib$}, '\1=@\1@'
end
system "./configure", "--prefix=#{prefix}",
"--includedir=#{include}/ossp",
"--without-perl",
"--without-php",
"--without-pgsql"
system "make"
system "make", "install"
end
test do
system "#{bin}/uuid-config", "--version"
end
end