Last active
March 4, 2020 13:47
-
-
Save m4ce/5d814ff130dd62d3dbe63fdd61467ae4 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 Csvcpp < Formula | |
desc "CSV for Modern C++" | |
homepage "https://github.com/p-ranav/csv" | |
url "https://github.com/p-ranav/csv/archive/1b152a5dcd45c72db5efd81ce28048897ef2dbba.tar.gz" | |
version "1b152a5dcd45c72db5efd81ce28048897ef2dbba" | |
sha256 "98d3d60140f41d196578bf87672d479180fbb6a7d08345002209b28339cb903c" | |
revision 5 | |
depends_on "cmake" => :build | |
def install | |
mkdir "build" do | |
system "cmake", "..", *std_cmake_args | |
system "make", "install" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment