homebrew-core/Formula/qrencode.rb
nibbles 2bits 62855e5e3e qrencode 3.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-05 07:13:39 -07:00

18 lines
457 B
Ruby

require 'formula'
class Qrencode < Formula
homepage 'http://fukuchi.org/works/qrencode/index.html.en'
url 'http://fukuchi.org/works/qrencode/qrencode-3.3.0.tar.gz'
sha1 '7e7143b2a2b925d77f2d9bae8135c1b7f027af8e'
depends_on 'pkg-config' => :build
def install
ENV.x11 # For libpng
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end