1d251b0aa6
- Upgrade to version 5.2.121. - Works well with superenv and is used by crossroads. Closes Homebrew/homebrew#15257. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
495 B
Ruby
19 lines
495 B
Ruby
require 'formula'
|
|
|
|
class Libpgm < Formula
|
|
homepage 'http://code.google.com/p/openpgm/'
|
|
url 'http://openpgm.googlecode.com/files/libpgm-5.2.121%7Edfsg.tar.gz'
|
|
sha1 '8931d88af57067b8e27acf2e06f256a447986e26'
|
|
version '5.2.121'
|
|
|
|
option :universal
|
|
|
|
def install
|
|
cd 'openpgm/pgm' do
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|