aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJustin de Vesine2012-03-30 23:22:30 -0600
committerJack Nagel2012-03-31 02:13:10 -0500
commit7b26c1ba6785bb0f5d720ed8044090e82e22931b (patch)
treee0c7a21bbbee219be60065df8e9812cbc1b98ebe /Library
parentef416878d5ee1923a1f013be2eeb3c7116b1150e (diff)
downloadhomebrew-7b26c1ba6785bb0f5d720ed8044090e82e22931b.tar.bz2
Move frobtads and inform6 to homebrew-games
Closes #11337. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-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