38fd391f31
A C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.
12 lines
376 B
Ruby
12 lines
376 B
Ruby
require 'brewkit'
|
|
|
|
class Libqrencode <Formula
|
|
url 'http://megaui.net/fukuchi/works/qrencode/qrencode-3.1.0.tar.gz'
|
|
homepage 'http://megaui.net/fukuchi/works/qrencode/index.en.html'
|
|
md5 'fc300af948b36b2197ede0d131c12e21'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|