blob: da9359ba07533ea8ff7c0833f6550202ada135bf (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require 'formula'
class Poster < Formula
  homepage 'http://schrfr.github.io/poster/'
  url 'https://github.com/schrfr/poster/archive/1.0.0.tar.gz'
  sha1 '20846c17fc0c266caecf82b24cbe7906999a410c'
  def install
    system "make"
    bin.install 'poster'
    man1.install 'poster.1'
  end
end
 |