aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/factor.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-18 09:05:18 -0800
committerAdam Vandenberg2012-02-18 09:05:18 -0800
commit8b4b065c91c689ebbda7f477f8baedaed813428a (patch)
tree9bbf182b5d924b64c2d0ab1bd36a351fa295ffec /Library/Formula/factor.rb
parente6da58e1ff59224989d01dba318ad8f363514c44 (diff)
downloadhomebrew-8b4b065c91c689ebbda7f477f8baedaed813428a.tar.bz2
Remove Factor
This is a head-only formula, and can be installed via a DMG.
Diffstat (limited to 'Library/Formula/factor.rb')
-rw-r--r--Library/Formula/factor.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/factor.rb b/Library/Formula/factor.rb
deleted file mode 100644
index 4e323de1a..000000000
--- a/Library/Formula/factor.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-require 'formula'
-
-# This formula installs Factor TRUNK.
-# One can install the latest stable release using the official DMG.
-
-class Factor < Formula
- head 'https://github.com/slavapestov/factor.git'
- homepage 'http://factorcode.org/'
-
- def install
- # The build script assumes it is in a Git repository.
- ENV['GIT_DIR']="#{@downloader.cached_location}/.git"
- system "./build-support/factor.sh update"
-
- prefix.install ["Factor.app", "factor.image", "factor"]
- (bin/'factor').write <<-EOS.undent
- #!/bin/sh
- exec #{prefix}/factor $@
- EOS
- end
-
- def caveats; <<-EOS.undent
- Cocoa app installed to #{prefix}/Factor.app.
- Makes use of 'factor.image' in the same folder.
- EOS
- end
-end