aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/openconnect.rb
blob: d505bf819451e47ccddd2232a1a29b7ab35e8529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Openconnect < Formula
  url 'ftp://ftp.infradead.org/pub/openconnect/openconnect-2.26.tar.gz'
  homepage 'http://www.infradead.org/openconnect.html'
  md5 'e3c7605fed128efe39c2eb9400af6765'

  def install
    inreplace 'Makefile' do |s|
      s.gsub! '$(DESTDIR)/usr/bin', "$(DESTDIR)#{bin}"
      s.gsub! '$(DESTDIR)/usr/libexec', "$(DESTDIR)#{libexec}"
    end
    system "make install"
  end
end