2012-01-19 21:24:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Poster < Formula
|
2013-04-07 02:34:41 +00:00
|
|
|
homepage 'http://schrfr.github.io/poster/'
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/schrfr/poster/archive/1.0.0.tar.gz'
|
|
|
|
sha1 '20846c17fc0c266caecf82b24cbe7906999a410c'
|
2012-01-19 21:24:59 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-03 23:59:37 +00:00
|
|
|
system "make"
|
|
|
|
bin.install 'poster'
|
|
|
|
man1.install 'poster.1'
|
2012-01-19 21:24:59 +00:00
|
|
|
end
|
|
|
|
end
|