Skip to content

Instantly share code, notes, and snippets.

@nebgnahz
Last active May 7, 2016 18:40
Show Gist options
  • Save nebgnahz/a03b5eddb90dd061c538119fd90f3ca1 to your computer and use it in GitHub Desktop.
Save nebgnahz/a03b5eddb90dd061c538119fd90f3ca1 to your computer and use it in GitHub Desktop.
GRT Brew Formula
class Grt < Formula
desc "The Gesture Recognition Toolkit (GRT) for Real-time machine learning."
homepage "http://www.nickgillian.com/wiki/"
url "https://github.com/nickgillian/grt/archive/v0.0.1.tar.gz"
sha256 "56f90a9ffa8b2bf4e5831d39f9e1912879cf032efa667a5237b57f68800a2dda"
depends_on "cmake" => :build
def install
cd "build"
mkdir "build"
cd "build"
system "cmake", ".."
system "make", "-j#{Hardware::CPU.cores}"
system "make", "install"
end
test do
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment