aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-06 20:04:21 -0800
committerAdam Vandenberg2012-03-06 20:04:21 -0800
commit775d253753cc1631c8a3f9a80e17f308559baecd (patch)
treea0ee02886fc58657357099352b7e660eebeb5089
parente34d013b74e4133287a36e240aac463366cbf6d4 (diff)
downloadhomebrew-775d253753cc1631c8a3f9a80e17f308559baecd.tar.bz2
Moved dotless to Homebrew-Alt.
This was the only formula in core that depended on Mono. Moving to Homebrew-Alt; once brew-tap lands someone could start a Homebrew-mono repository if they were so inclined.
-rw-r--r--Library/Formula/dotless.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/Library/Formula/dotless.rb b/Library/Formula/dotless.rb
deleted file mode 100644
index 67132e756..000000000
--- a/Library/Formula/dotless.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'formula'
-
-class Dotless < Formula
- homepage "http://www.dotlesscss.org/"
- url "https://github.com/downloads/dotless/dotless/dotless-v1.2.1.0.zip"
- md5 "dd06170b2e6a8f943f715977cfcd254d"
-
- def install
- mono_path = which 'mono'
- unless mono_path
- opoo "mono not found in path"
- puts "You need to install Mono to run this software:"
- puts "http://www.go-mono.com/mono-downloads/download.html"
- exit 1
- end
-
- (bin+'dotless').write <<-EOF.undent
- #!/bin/bash
- exec "#{mono_path}" "#{libexec}/dotless.Compiler.exe" "$@"
- EOF
-
- libexec.install Dir['*.exe']
- (share+'dotless').install Dir['*.txt']
- end
-end