homebrew-core/Formula/spiped.rb
Berk D. Demir 2070926808 spiped: Update to 1.1.0
Closes Homebrew/homebrew#7581.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-12 10:33:09 -07:00

16 lines
408 B
Ruby

require 'formula'
class Spiped < Formula
url 'http://www.tarsnap.com/spiped/spiped-1.1.0.tgz'
homepage 'http://www.tarsnap.com/spiped.html'
sha256 'b727b902310d217d56c07d503c4175c65387ff07c9cd50a24584903faf9f3dc3'
def install
inreplace 'Makefile' do |s|
s.change_make_var! "LDADD", "-lcrypto"
s.change_make_var! "BINDIR_DEFAULT", bin
end
system "bsdmake install"
end
end