Skip to content

Commit

Permalink
update gee.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
stcrestrada committed Jun 25, 2021
1 parent 1f6ce88 commit 866e386
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions gee.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
class Gee < Formula
desc "Project Gee"
homepage "https://github.com/stcrestrada/gee"
url "https://github.com/stcrestrada/gee/archive/refs/tags/v0.1.8.tar.gz"
sha256 "03c43ff2aa8e604345cfdd754863a6db5511b98c6ce794d8c487ae8f23f14ec7"
license "MIT"

# depends_on "cmake" => :build

def install
# ENV.deparallelize # if your formula fails when building in parallel
# Remove unrecognized options if warned by configure
# https://rubydoc.brew.sh/Formula.html#std_configure_args-instance_method
system "./configure", *std_configure_args, "--disable-silent-rules"
# system "cmake", "-S", ".", "-B", "build", *std_cmake_args
end

test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test gee`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end

0 comments on commit 866e386

Please sign in to comment.