-
-
Save juliengdt/5fd70ec4b571e15632421d5f6a2929c6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
require 'formula' | |
class Oclint < Formula | |
homepage 'http://oclint.org' | |
url 'https://github.com/oclint/oclint/releases/download/v0.10.2/oclint-0.10.2-x86_64-darwin-15.2.0.tar.gz' | |
version '0.10.2' | |
sha1 '4b61f83ccd55eeaa968ca5ee159e2528b4fbfeb5' | |
devel do | |
url 'https://github.com/oclint/oclint/releases/download/v0.10.2/oclint-0.10.2-x86_64-darwin-15.2.0.tar.gz' | |
version '0.10.2' | |
sha1 '4b61f83ccd55eeaa968ca5ee159e2528b4fbfeb5' | |
end | |
def install | |
lib.install Dir['lib/clang'] | |
lib.install Dir['lib/oclint'] | |
bin.install Dir['bin/*'] | |
end | |
def test | |
system "echo \"int main() { return 0; }\" > #{prefix}/test.m" | |
system "#{bin}/oclint #{prefix}/test.m -- -c" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment