homebrew-core/Formula/clean.rb
Bertrand Marron 99593e01b3 Added new formula for clean (Nifty Clean).
The clean utility searches  through the filesystem for "temporary files"
left behind by editors and the like which can be deleted safely.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2010-12-02 12:51:57 +00:00

13 lines
301 B
Ruby

require 'formula'
class Clean <Formula
url 'http://downloads.sourceforge.net/project/clean/clean/3.4/clean-3.4.tar.bz2'
homepage 'http://clean.sourceforge.net/'
md5 '7edc1f9c7c1fc33298fec329cf5dba01'
def install
system 'make'
bin.install 'clean'
man1.install 'clean.1'
end
end