blob: 0620fe94630ffc3a63521a4410211de5d858ef4d (
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'
md5 '85b7a895ee2a023a1c8f4c09fb41b179'
depends_on 'boost'
def install
system "rake", "install", "prefix=#{prefix}"
end
end
|