Skip to content

Instantly share code, notes, and snippets.

@waj
Created August 21, 2013 03:33
Show Gist options
  • Save waj/6290076 to your computer and use it in GitHub Desktop.
Save waj/6290076 to your computer and use it in GitHub Desktop.
Homebrew formula for libtask (http://swtch.com/libtask/)
require 'formula'
class Libtask < Formula
homepage 'http://swtch.com/libtask/'
url 'http://swtch.com/libtask.tar.gz'
sha1 '3873d8b53d386e7d6baecf99310ae3c3f6e8d066'
version 'latest'
def install
inreplace 'Makefile', '/usr/local', prefix
mkdir lib
mkdir include
system "make", "libtask.a"
system "make", "install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment