blob: 857594991487961f3f5f9085717cbb08c0c6c1ae (
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.4.2.tar.gz'
  sha1 '7daaad61f333ff6cdabfb0d925c3ab668d16dee2'
  depends_on 'pkg-config' => :build
  depends_on :libpng
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
  |