Skip to content

Instantly share code, notes, and snippets.

@m4ce
Last active March 4, 2020 13:47
Show Gist options
  • Save m4ce/5d814ff130dd62d3dbe63fdd61467ae4 to your computer and use it in GitHub Desktop.
Save m4ce/5d814ff130dd62d3dbe63fdd61467ae4 to your computer and use it in GitHub Desktop.
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