aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mfoc.rb
blob: 3aa9c3a98a2acc95107ae70d636a6e0173f9d0e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Mfoc < Formula
  homepage 'http://code.google.com/p/mfoc/'
  url 'https://mfoc.googlecode.com/files/mfoc-0.10.7.tar.bz2'
  sha1 '162a464baf6498926a72383c6b0040654321012d'

  depends_on 'pkg-config' => :build
  depends_on 'libnfc'
  depends_on 'libusb'

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

  test do
    system bin/"mfoc", "-h"
  end
end