homebrew-core/Formula/libswiftnav.rb
2019-10-14 22:33:51 +02:00

49 lines
1.6 KiB
Ruby

class Libswiftnav < Formula
desc "C library implementing GNSS related functions and algorithms"
homepage "https://github.com/swift-nav/libswiftnav-legacy"
url "https://github.com/swift-nav/libswiftnav-legacy/archive/v0.21.tar.gz"
sha256 "087c7264c0d0d735414f8bffbfa52ab44696c500ba14a43262d98d6aa093221f"
bottle do
cellar :any
rebuild 1
sha256 "dfffba32c3e0d570170a33fe713b9899a08fbffeeccf14c3cb36138972a3b52a" => :catalina
sha256 "e8ab824fddb8ffcb2aea530d7124c9c7debd4592dce3b0f0e649d4d63bea587b" => :mojave
sha256 "528d7e5e52b8ff8cdcb9be22a884d8e8b49e08f9ef90d0b99362526e7117e9ee" => :high_sierra
sha256 "739033ca99d860134475385ee3fe9180366d36f51d0a08326b2c8bab4a84dbf8" => :sierra
sha256 "9bea031f090e48b33e9fa24b8dc5d0391b64dfdc93613ac6aed23c2643ad6e7b" => :el_capitan
end
depends_on "cmake" => :build
depends_on "pkg-config" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.c").write <<~EOS
#include <stdlib.h>
#include <stdio.h>
#include <libswiftnav/edc.h>
const u8 *test_data = (u8*)"123456789";
int main() {
u32 crc;
crc = crc24q(test_data, 9, 0xB704CE);
if (crc != 0x21CF02) {
printf("libswiftnav CRC quick test failed: CRC of \\"123456789\\" with init value 0xB704CE should be 0x21CF02, not 0x%06X\\n", crc);
exit(1);
} else {
printf("libswiftnav CRC quick test successful, CRC = 0x21CF02\\n");
exit(0);
}
}
EOS
system ENV.cc, "-L", lib, "-lswiftnav", "-o", "test", "test.c"
system "./test"
end
end