42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
class LibcapNg < Formula
|
|
desc "Library for Linux that makes using posix capabilities easy"
|
|
homepage "https://people.redhat.com/sgrubb/libcap-ng"
|
|
url "https://github.com/stevegrubb/libcap-ng/archive/v0.8.2.tar.gz"
|
|
sha256 "65b86885b8d873e55c05bd49427fd370d559b26f0c2089ac9194828e6a2fe233"
|
|
license "LGPL-2.1-or-later"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "python@3.9" => :build
|
|
depends_on "swig" => :build
|
|
depends_on :linux
|
|
|
|
uses_from_macos "m4" => :build
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--with-python3"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include <cap-ng.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
if(capng_have_permitted_capabilities() > -1)
|
|
printf("ok");
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}", "-lcap-ng", "-o", "test"
|
|
assert_equal "ok", `./test`
|
|
end
|
|
end
|