blob: f2ab8035b9b7b691e048e68b08b8ca8c5521d542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|