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

class Asn1c < Formula
  homepage 'http://lionet.info/asn1c/blog/'
  url 'http://lionet.info/soft/asn1c-0.9.21.tar.gz'
  sha1 '22b8cbc73eab870ec2cab51997b3b0d422813624'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end