homebrew-core/Formula/libforensic1394.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

37 lines
1.1 KiB
Ruby

class Libforensic1394 < Formula
desc "Live memory forensics over IEEE 1394 (\"FireWire\") interface"
homepage "https://freddie.witherden.org/tools/libforensic1394/"
url "https://freddie.witherden.org/tools/libforensic1394/releases/libforensic1394-0.2.tar.gz"
sha256 "50a82fe2899aa901104055da2ac00b4c438cf1d0d991f5ec1215d4658414652e"
head "git://git.freddie.witherden.org/forensic1394.git"
bottle do
cellar :any
sha1 "325248a31ee7f4c57126d77afe4268cf572a9dc5" => :yosemite
sha1 "311dddfc3d77a5ceb316fd909ad3cfae2268483b" => :mavericks
sha1 "55ed86e44ef8c35019fc7e68743e0443b95cf2f7" => :mountain_lion
end
depends_on "cmake" => :build
def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <assert.h>
#include <forensic1394.h>
int main() {
forensic1394_bus *bus;
bus = forensic1394_alloc();
assert(NULL != bus);
forensic1394_destroy(bus);
return 0;
}
EOS
system ENV.cc, "test.c", "-L#{lib}", "-lforensic1394", "-o", "test"
system "./test"
end
end