blob: ab016ae629c2aad027a6002fc4b2705a6ce21aab (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | require 'formula'
class Popt < Formula
  url 'http://rpm5.org/files/popt/popt-1.16.tar.gz'
  homepage 'http://rpm5.org'
  md5 '3743beefa3dd6247a73f8f7a32c14c33'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end
 |