homebrew-core/Formula/libgusb.rb

83 lines
2.5 KiB
Ruby

class Libgusb < Formula
include Language::Python::Shebang
desc "GObject wrappers for libusb1"
homepage "https://github.com/hughsie/libgusb"
url "https://people.freedesktop.org/~hughsient/releases/libgusb-0.3.10.tar.xz"
sha256 "0eb0b9ab0f8bba0c59631c809c37b616ef34eb3c8e000b0b9b71cf11e4931bdc"
license "LGPL-2.1-only"
head "https://github.com/hughsie/libgusb.git", branch: "main"
livecheck do
url "https://people.freedesktop.org/~hughsient/releases/"
regex(/href=.*?libgusb[._-]v?(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 arm64_monterey: "849f1b3ce8992e6c1d2526bfb1f49e708a00ef11096b3523040bc4d78cf1d81e"
sha256 arm64_big_sur: "f6134de07f56b644a6eaad1a89b242c5a894ce7dd3e208bb6aca0e018c8bf915"
sha256 monterey: "e73694daf4e1af0b676471e2e608b180761d93004c79574a94097d1624e73fa5"
sha256 big_sur: "eb972073fabe0280e785d734d4f456bb703b4b602deff16d9d3211da5604e8cb"
sha256 catalina: "d2822cd3978da5ffb0ff27f2e792bae66e2c4cc6b1f8d814afbef6ae283291c0"
sha256 x86_64_linux: "47eb5f3aab7e66f6145891370c5061571c33106c57aab378143f258e76516032"
end
depends_on "gobject-introspection" => :build
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => :build
depends_on "python@3.9" => :build
depends_on "vala" => :build
depends_on "glib"
depends_on "libusb"
depends_on "usb.ids"
def install
rewrite_shebang detected_python_shebang, "contrib/generate-version-script.py"
mkdir "build" do
system "meson", *std_meson_args, "-Ddocs=false", "-Dusb_ids=#{Formula["usb.ids"].opt_share}/misc/usb.ids", ".."
system "ninja"
system "ninja", "install"
end
end
test do
system "#{bin}/gusbcmd", "-h"
(testpath/"test.c").write <<~EOS
#include <gusb.h>
int main(int argc, char *argv[]) {
GUsbContext *context = g_usb_context_new(NULL);
g_assert_nonnull(context);
return 0;
}
EOS
gettext = Formula["gettext"]
glib = Formula["glib"]
libusb = Formula["libusb"]
flags = %W[
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{libusb.opt_include}/libusb-1.0
-I#{include}/gusb-1
-D_REENTRANT
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{libusb.opt_lib}
-L#{lib}
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lusb-1.0
-lgusb
]
on_macos do
flags << "-lintl"
end
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end