New formula: imake 1.0.4

The X Window System used imake extensively up through
the X11R6.9 release, for both full builds within
the source tree and external software. X has since
moved to GNU autoconf and automake for its build system
in X11R7.0 and later releases, but still maintains
imake for building existing external software
programs that have not yet converted.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Rui Pereira 2011-09-05 09:09:23 +02:00 committed by Jack Nagel
parent 6cbb3112f4
commit 6423a96e21
1 changed files with 25 additions and 0 deletions

25
Formula/imake.rb Normal file
View File

@ -0,0 +1,25 @@
require 'formula'
class ImakeXorgCfFiles < Formula
url 'http://xorg.freedesktop.org/releases/individual/util/xorg-cf-files-1.0.4.tar.bz2'
md5 '700c6d040d36a569e657a3ba5e1d8b24'
end
class Imake < Formula
url 'http://xorg.freedesktop.org/releases/individual/util/imake-1.0.4.tar.bz2'
homepage 'http://xorg.freedesktop.org'
md5 '48133c75bd77c127c7eff122e08ebbf6'
depends_on 'pkg-config' => :build
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
# install X config files
ImakeXorgCfFiles.new.brew do
system "./configure", "--with-config-dir=#{lib}/X11/config"
system "make install"
end
end
end