aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-04 11:14:40 -0700
committerAdam Vandenberg2014-05-04 11:14:40 -0700
commit9977bbd461a97895f28157936b784a937bc23223 (patch)
tree63d35ce22ada57a99485a9e77656cf73879e2c03 /Library/Formula
parentc8fde08c79ee09690f06e15dcddaf1f569ef54f9 (diff)
downloadhomebrew-9977bbd461a97895f28157936b784a937bc23223.tar.bz2
Move hugs98 to the boneyard.
Last update was in 2006 and this software does not build with modern compilers. Closes #28939.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/hugs98.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/Library/Formula/hugs98.rb b/Library/Formula/hugs98.rb
deleted file mode 100644
index 6c4f9ac16..000000000
--- a/Library/Formula/hugs98.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-require 'formula'
-
-class Hugs98 < Formula
- homepage 'http://www.haskell.org/hugs/'
- url 'http://cvs.haskell.org/Hugs/downloads/2006-09/hugs98-plus-Sep2006.tar.gz'
- version 'plus-Sep2006'
- sha1 '1464a80c715bc5f786ea5a4e4257b2ff0dc7e1e9'
-
- depends_on 'readline'
-
- fails_with :clang do
- cause %[ERROR "../libraries/bootlib/Data/Dynamic.hs" - Module "Main" already loaded]
- end
-
- patch :p0 do
- url "https://trac.macports.org/export/80246/trunk/dports/lang/hugs98/files/patch-packages-base-include-HsBase.h.diff"
- sha1 "2cc58901ec6e8d81bda8d73230cb0a27b320cf94"
- end
-
- patch :p0 do
- url "https://trac.macports.org/export/80246/trunk/dports/lang/hugs98/files/patch-libraries-tools-make-bootlib.diff"
- sha1 "acd32ba7fda404f9c33791c253e14e801ffd4e2f"
- end
-
- def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make"
- system "make install"
- end
-end