aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spiped.rb
blob: 41af543d12883d420fc51107d0d7d96881d153e2 (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.2.2.tgz'
  sha256 'a9eb4681e4ccd5d86b8a2d4e16785db8ba10d8a9f7f732485511fd4b92dff1ec'

  depends_on :bsdmake => :build

  def install
    system "bsdmake", "BINDIR_DEFAULT=#{bin}", "install"
    doc.install 'spiped/README' => 'README.spiped',
                'spipe/README' => 'README.spipe'
  end
end