From c64c4a71e36d49e6d491a0c9949a9efa14d96a79 Mon Sep 17 00:00:00 2001 From: Ryan Jennings Date: Fri, 27 Jul 2018 21:11:34 -0700 Subject: [PATCH] move forumula to another repo, update readme --- README.md | 3 ++- prep.rb | 30 ------------------------------ 2 files changed, 2 insertions(+), 31 deletions(-) delete mode 100644 prep.rb diff --git a/README.md b/README.md index 50d7819..b95d4f0 100644 --- a/README.md +++ b/README.md @@ -368,8 +368,9 @@ To remove the package Using homebrew: -`brew tap ryjen/prep` +`brew tap ryjen/tap` +`brew install prep` Contributing ============ diff --git a/prep.rb b/prep.rb deleted file mode 100644 index 386ce54..0000000 --- a/prep.rb +++ /dev/null @@ -1,30 +0,0 @@ -# Documentation: https://docs.brew.sh/Formula-Cookbook -# http://www.rubydoc.info/github/Homebrew/brew/master/Formula -# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! -class Prep < Formula - desc "a c/c++ dependency manager and build tool" - homepage "https://github.com/ryjen/prep" - url "https://github.com/ryjen/prep/releases/download/v0.1.0/prep-0.1.0.tar.gz" - version "0.1.0" - sha256 "46e4c12e7f11f1281a535993d79cbab0866b5773ece1deab07b36ab28bd6d9cb" - depends_on "cmake" => :build - - def install - # ENV.deparallelize # if your formula fails when building in parallel - system "cmake", ".", *std_cmake_args - system "make", "install" # if this fails, try separate make/make install steps - 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 prep`. 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 "make", "test" - end -end