mfoc 0.10.7
This commit is contained in:
parent
62671591ce
commit
8030e9f202
1 changed files with 24 additions and 0 deletions
24
Formula/mfoc.rb
Normal file
24
Formula/mfoc.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
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 :autoconf
|
||||
depends_on :automake
|
||||
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
|
Loading…
Reference in a new issue