homebrew-core/Formula/spiped.rb
Brock Batsell a889909b66 spiped: install man page
Closes Homebrew/homebrew#28199.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-06 10:33:02 -05:00

16 lines
463 B
Ruby

require 'formula'
class Spiped < Formula
homepage 'http://www.tarsnap.com/spiped.html'
url 'https://www.tarsnap.com/spiped/spiped-1.3.1.tgz'
sha256 '8a58a983be460b88ed5a105201a0f0afacb83382208761837a62871dcca42fee'
depends_on :bsdmake
def install
man1.mkpath
system "bsdmake", "BINDIR_DEFAULT=#{bin}", "MAN1DIR=#{man1}", "install"
doc.install 'spiped/README' => 'README.spiped',
'spipe/README' => 'README.spipe'
end
end