aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/crossroads.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-07-07 11:08:22 -0700
committerAdam Vandenberg2012-07-10 08:56:02 -0700
commit1f32fa43a77d75fe354e9e59bd23e9b9d934e09c (patch)
treec49ca57d6e333035e48616bf89eaba0d067da021 /Library/Formula/crossroads.rb
parentcc6e0124437c4ceabbc0542770ed154aa0fb9e4e (diff)
downloadhomebrew-1f32fa43a77d75fe354e9e59bd23e9b9d934e09c.tar.bz2
Use autotools symbols
Diffstat (limited to 'Library/Formula/crossroads.rb')
-rw-r--r--Library/Formula/crossroads.rb19
1 files changed, 9 insertions, 10 deletions
diff --git a/Library/Formula/crossroads.rb b/Library/Formula/crossroads.rb
index 6cd247cd9..d13706b5e 100644
--- a/Library/Formula/crossroads.rb
+++ b/Library/Formula/crossroads.rb
@@ -3,23 +3,22 @@ require 'formula'
class Crossroads < Formula
homepage 'http://www.crossroads.io/'
url 'http://download.crossroads.io/libxs-1.2.0.tar.gz'
- md5 'aac1264bb0d03704bd2126419b981fd5'
- head 'https://github.com/crossroads-io/libxs.git'
+ sha1 'd9633e6df56e3ed0c4f0e86d80ee0ae10c8a966a'
- fails_with :llvm do
- build 2326
- cause "Compiling with LLVM gives a segfault while linking."
- end
+ head 'https://github.com/crossroads-io/libxs.git'
- if ARGV.build_head? and MacOS.xcode_version >= "4.3"
- depends_on "automake" => :build
- depends_on "libtool" => :build
- end
+ depends_on :automake
+ depends_on :libtool
def options
[['--with-pgm', 'Build with PGM extension']]
end
+ fails_with :llvm do
+ build 2326
+ cause "Compiling with LLVM gives a segfault while linking."
+ end
+
def install
system "./autogen.sh" if ARGV.build_head?