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

class Qrencode < Formula
  homepage 'http://fukuchi.org/works/qrencode/index.html.en'
  url 'http://fukuchi.org/works/qrencode/qrencode-3.3.1.tar.gz'
  sha1 'a5a99f47f4215ec17e74999fdb893a4e542f790c'

  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