aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-03-18 09:52:46 -0700
committerAdam Vandenberg2013-03-18 09:52:46 -0700
commit5ae45059c7b15ef569ff688505aa84b9929a542c (patch)
treed9df2b90a2fcdee39288ce974aad72ad3a1f69fb /Library/Formula
parent8b9257aaddb02fe558a52fcb9c3a0c8531a75d6f (diff)
downloadhomebrew-5ae45059c7b15ef569ff688505aa84b9929a542c.tar.bz2
Remove crossroads
Closes #18545.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/crossroads.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/Library/Formula/crossroads.rb b/Library/Formula/crossroads.rb
deleted file mode 100644
index 7b8fc781e..000000000
--- a/Library/Formula/crossroads.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require 'formula'
-
-class Crossroads < Formula
- homepage 'http://www.crossroads.io/'
- url 'http://download.crossroads.io/libxs-1.2.0.tar.gz'
- sha1 'd9633e6df56e3ed0c4f0e86d80ee0ae10c8a966a'
-
- head 'https://github.com/crossroads-io/libxs.git'
-
- option 'with-pgm', 'Build with PGM extension'
-
- depends_on 'pkg-config' => :build
- depends_on :automake
- depends_on :libtool
- depends_on 'libpgm' if build.include? 'with-pgm'
-
- fails_with :llvm do
- build 2326
- cause "Compiling with LLVM gives a segfault while linking."
- end
-
- def install
- system "./autogen.sh" if build.head?
-
- # Help it find openpgm-5.2 because it searches for openpgm-5.1.pc
- # https://github.com/mxcl/homebrew/issues/15217
- if build.include? 'with-pgm'
- libpgm = Formula.factory('libpgm')
- ENV['OpenPGM_CFLAGS'] = "-I#{libpgm.include}/pgm-5.2 -I#{libpgm.lib}/pgm-5.2/include"
- ENV['OpenPGM_LIBS'] = "-L#{libpgm.lib} -lpgm"
- end
-
- args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
- args << "--with-system-pgm" if build.include? 'with-pgm'
- system "./configure", *args
-
- system "make"
- system "make install"
- end
-end