blob: 82a3c1deb5138f94600d1e32e32cd0aa2f55e113 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|