Last active
May 7, 2016 18:40
-
-
Save nebgnahz/a03b5eddb90dd061c538119fd90f3ca1 to your computer and use it in GitHub Desktop.
GRT Brew Formula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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