57 lines
1.8 KiB
Ruby
57 lines
1.8 KiB
Ruby
class Liberasurecode < Formula
|
|
desc "Erasure Code API library written in C with pluggable backends"
|
|
homepage "https://github.com/openstack/liberasurecode"
|
|
url "https://github.com/openstack/liberasurecode/archive/1.5.0.tar.gz"
|
|
sha256 "713272e81e67f308c21fc6aad417f79b30fb1e7f2338293fa0eaadcc53611909"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "f70d7dd6bbada77684cce1346b36c22b2784839326c4d5a2406e9f6b78d23502" => :high_sierra
|
|
sha256 "0d9e4bb728b35cbd6694b7756b961a2c22d716a1fa5eeb31fec86aeb323c8420" => :sierra
|
|
sha256 "879c7118175fdd3e23700137fb249b89362b957ec1c47cf25723bac32eeb305f" => :el_capitan
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "jerasure"
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"liberasurecode-test.cpp").write <<~EOS
|
|
#include <erasurecode.h>
|
|
|
|
int main() {
|
|
/*
|
|
* Assumes if you can create an erasurecode instance that
|
|
* the library loads, relying on the library test suites
|
|
* to test for correctness.
|
|
*/
|
|
struct ec_args args = {
|
|
.k = 10,
|
|
.m = 5,
|
|
.hd = 3
|
|
};
|
|
int ed = liberasurecode_instance_create(
|
|
EC_BACKEND_FLAT_XOR_HD,
|
|
&args
|
|
);
|
|
|
|
if (ed <= 0) { exit(1); }
|
|
liberasurecode_instance_destroy(ed);
|
|
|
|
exit(0);
|
|
}
|
|
EOS
|
|
system ENV.cxx, "liberasurecode-test.cpp", "-L#{lib}", "-lerasurecode", "-I#{include}/liberasurecode", "-o", "liberasurecode-test"
|
|
system "./liberasurecode-test"
|
|
end
|
|
end
|