aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-04-16 20:47:11 -0700
committerAdam Vandenberg2012-04-16 20:47:11 -0700
commit635ef25780a35a272723938b606744d10839984a (patch)
tree60c944020dba097f1259a685fdf0709d4c4f6c3b /Library
parentb36aeac796e889c072b3f7f4aa564a10d8c71833 (diff)
downloadhomebrew-635ef25780a35a272723938b606744d10839984a.tar.bz2
Remove libsgml
Formula download was removed. Nothing in Homebrew depends on this (Io used to, but now vends its own version.) Closes #11244.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libsgml.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/Library/Formula/libsgml.rb b/Library/Formula/libsgml.rb
deleted file mode 100644
index 2120202f7..000000000
--- a/Library/Formula/libsgml.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-require 'formula'
-
-class Libsgml < Formula
- url 'http://hick.org/code/skape/libsgml/libsgml-1.1.4.tar.gz'
- homepage 'http://hick.org'
- md5 'a3ba2f8c19faf1a53182d9c6fab22e58'
-
- def patches
- { :p0 => [
- "https://trac.macports.org/export/89276/trunk/dports/textproc/libsgml/files/patch-examples_variant.c.diff",
- "https://trac.macports.org/export/89276/trunk/dports/textproc/libsgml/files/patch-src_Variant.c.diff",
- "https://trac.macports.org/export/89276/trunk/dports/textproc/libsgml/files/patch-Makefile.in.diff",
- "https://trac.macports.org/export/89276/trunk/dports/textproc/libsgml/files/patch-configure.in.diff",
- "https://trac.macports.org/export/89276/trunk/dports/textproc/libsgml/files/patch-src_Makefile.in.diff"
- ] }
- end
-
- if MacOS.xcode_version >= "4.3"
- # remove the autoreconf if possible, no comment provided about why it is there
- # so we have no basis to make a decision at this point.
- depends_on "automake" => :build
- depends_on "libtool" => :build
- end
-
- def install
- lib.mkpath
- system "autoreconf -fvi"
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
- system "make"
- system "make install"
- end
-end