2011-08-28 19:49:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Spiped < Formula
|
|
|
|
homepage 'http://www.tarsnap.com/spiped.html'
|
2012-11-15 08:20:50 +00:00
|
|
|
url 'https://www.tarsnap.com/spiped/spiped-1.2.2.tgz'
|
|
|
|
sha256 'a9eb4681e4ccd5d86b8a2d4e16785db8ba10d8a9f7f732485511fd4b92dff1ec'
|
2011-08-28 19:49:22 +00:00
|
|
|
|
2013-02-02 05:45:05 +00:00
|
|
|
depends_on :bsdmake
|
2012-03-16 18:49:56 +00:00
|
|
|
|
2011-08-28 19:49:22 +00:00
|
|
|
def install
|
2012-08-30 21:48:29 +00:00
|
|
|
system "bsdmake", "BINDIR_DEFAULT=#{bin}", "install"
|
2012-09-01 04:12:58 +00:00
|
|
|
doc.install 'spiped/README' => 'README.spiped',
|
|
|
|
'spipe/README' => 'README.spipe'
|
2011-08-28 19:49:22 +00:00
|
|
|
end
|
|
|
|
end
|