aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/frobtads.rb14
-rw-r--r--Library/Formula/inform6.rb13
2 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/frobtads.rb b/Library/Formula/frobtads.rb
deleted file mode 100644
index 2af80ddf3..000000000
--- a/Library/Formula/frobtads.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require 'formula'
-
-class Frobtads < Formula
- homepage 'http://www.tads.org/frobtads.htm'
- url 'http://www.tads.org/frobtads/frobtads-1.1.tar.gz'
- md5 '2d29d1449bac6f23b6c5f522209069a1'
- head 'git://git.assembla.com/frobtads.git'
-
- def install
- system "./configure", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
- end
-end
diff --git a/Library/Formula/inform6.rb b/Library/Formula/inform6.rb
deleted file mode 100644
index 3d092ddbf..000000000
--- a/Library/Formula/inform6.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'formula'
-
-class Inform6 < Formula
- url 'http://ifarchive.flavorplex.com/if-archive/infocom/compilers/inform6/source/inform-6.31.1.tar.gz'
- homepage 'http://www.inform-fiction.org/inform6.html'
- md5 '02e64fc13c06a888a6c0f97974e2c02c'
-
- def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
- end
-end