blob: d9105698da8696cb018a766ae9fae51543dcf810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
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
    system "bsdmake", "BINDIR_DEFAULT=#{bin}", "install"
    doc.install 'spiped/README' => 'README.spiped',
                'spipe/README' => 'README.spipe'
  end
end
  |