aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2013-10-04 20:12:42 -0700
committerAdam Vandenberg2013-10-04 20:12:42 -0700
commit49ac3b81e0da2b69ca2a2b0e2b381e9684f7fa2d (patch)
tree9660144f5eed4e7604d13046fd626939b9cee211 /Library/Formula
parentb17dc10b27f2a6b585ddab9d78bf1dc3c403f6e5 (diff)
downloadhomebrew-49ac3b81e0da2b69ca2a2b0e2b381e9684f7fa2d.tar.bz2
Redact GNU Arch
This project has been removed from GNU mirrors. Debian still packages a version of it, so users of this software could switch the formula to use the Debian download, though we no longer want to carry this in core.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnu-arch.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/Library/Formula/gnu-arch.rb b/Library/Formula/gnu-arch.rb
deleted file mode 100644
index e8fd2d525..000000000
--- a/Library/Formula/gnu-arch.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'formula'
-
-class GnuArch < Formula
- homepage 'http://www.gnu.org/software/gnu-arch/'
- url 'http://ftpmirror.gnu.org/gnu-arch/tla-1.3.5.tar.gz'
- mirror 'http://ftp.gnu.org/gnu/gnu-arch/tla-1.3.5.tar.gz'
- sha1 '0fb3b5bfa6b2fb5eb953fdca9e0f75ac1b35b15e'
-
- def install
- mkdir "build" do
- system "../src/configure", "--prefix=#{prefix}"
- ENV.j1 # don't run make in parallel
- system "make"
- system "make install"
- end
- end
-
- def test
- system "#{bin}/tla", "-V"
- end
-end