aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/csstidy.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Formula/csstidy.rb b/Library/Formula/csstidy.rb
deleted file mode 100644
index 289f72db2..000000000
--- a/Library/Formula/csstidy.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'formula'
-
-class Csstidy < Formula
- head 'http://csstidy.svn.sourceforge.net/svnroot/csstidy/trunk-cpp/'
- homepage 'http://csstidy.sourceforge.net/'
-
- depends_on 'scons' => :build
-
- def install
- arch = Hardware.is_64_bit? ? 'x64' : 'ia32'
- system "scons", "-j #{ENV.make_jobs}",
- "arch=#{arch}"
-
- bin.install "release/csstidy/csstidy"
- end
-end