blob: f6bef9b3d164555256be0a6188be5b4cf80e759e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Smartypants < Formula
homepage 'http://daringfireball.net/projects/smartypants/'
url 'http://daringfireball.net/projects/downloads/SmartyPants_1.5.1.zip'
sha1 '339a493f89cfee1e9f051bb1b39f9dcae4c595ca'
def install
bin.install 'SmartyPants.pl' => 'smartypants'
end
end
|