Popt formula
Popt is similar to getopt, but with a number of enhancements.
This commit is contained in:
parent
8829204c1e
commit
d5944fa8a9
1 changed files with 12 additions and 0 deletions
12
Formula/popt.rb
Normal file
12
Formula/popt.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Popt <Formula
|
||||
@url='http://rpm5.org/files/popt/popt-1.14.tar.gz'
|
||||
@homepage='http://rpm5.org'
|
||||
@md5='4f90a07316eb825604dd10ae4f9f3f04'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue