blob: 86f85fecf5eafe4b60aecae5a7762fba8460d849 (
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'
sha1 'cfe94a15a2404db85858a81ff8de27c8ff3e235e'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
|