88779ade49
Closes Homebrew/homebrew#14653.
13 lines
299 B
Ruby
13 lines
299 B
Ruby
require 'formula'
|
|
|
|
class Plustache < Formula
|
|
url 'https://github.com/mrtazz/plustache/tarball/v0.2.0'
|
|
homepage 'https://github.com/mrtazz/plustache'
|
|
sha1 '266f95596cfedb0b7415f49871a75ccd7ace67da'
|
|
|
|
depends_on 'boost'
|
|
|
|
def install
|
|
system "rake", "install", "prefix=#{prefix}"
|
|
end
|
|
end
|