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

class Srecord < Formula
  homepage 'http://srecord.sourceforge.net/'
  url 'http://srecord.sourceforge.net/srecord-1.60.tar.gz'
  sha1 '0e0e94e735578346138c916117a8d6c8324e9fec'

  depends_on 'boost'
  depends_on 'libgcrypt'

  def install
    system "./configure", "--prefix=#{prefix}", "LIBTOOL=glibtool"
    system "make install"
  end
end