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

class Qrencode < Formula
  url 'http://megaui.net/fukuchi/works/qrencode/qrencode-3.1.1.tar.gz'
  homepage 'http://megaui.net/fukuchi/works/qrencode/index.en.html'
  md5 'd97f67cbefaf577e6c15923f3cc57b6a'

  depends_on 'pkg-config' => :build

  def install
    ENV.x11 # For libpng
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    ENV.j1 # Install isn't parallel-safe
    system "make install"
  end
end