34 lines
1019 B
Ruby
34 lines
1019 B
Ruby
class Numactl < Formula
|
|
desc "NUMA support for Linux"
|
|
homepage "https://github.com/numactl/numactl"
|
|
url "https://github.com/numactl/numactl/releases/download/v2.0.16/numactl-2.0.16.tar.gz"
|
|
sha256 "1b242f893af977a1d31af6ce9d6b8dafdd2d8ec3dc9207f7c2dc0d3446e7c7c8"
|
|
license all_of: ["GPL-2.0-only", "LGPL-2.1-only", :public_domain, :cannot_represent]
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "809a693e16e891c8ee072c0e403769daedbaf3cbaa52291cc0bb0c008fc8065b"
|
|
end
|
|
|
|
depends_on :linux
|
|
|
|
def install
|
|
system "./configure", *std_configure_args, "--disable-silent-rules"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <numa.h>
|
|
int main() {
|
|
if (numa_available() >= 0) {
|
|
struct bitmask *mask = numa_allocate_nodemask();
|
|
numa_free_nodemask(mask);
|
|
}
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-I#{include}", "test.c", "-L#{lib}", "-lnuma", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|