homebrew-core/Formula/p7zip.rb

16 lines
462 B
Ruby
Raw Normal View History

require 'formula'
2009-06-26 11:58:00 +00:00
class P7zip <Formula
@url='http://downloads.sourceforge.net/sourceforge/p7zip/p7zip_9.04_src_all.tar.bz2'
2009-06-26 11:58:00 +00:00
@homepage='http://p7zip.sourceforge.net/'
@md5='9194ebf9a2b3735d236aed001de5f6f8'
def install
FileUtils.mv 'makefile.macosx_32bits', 'makefile.machine'
FileUtils.mv 'DOCS/copying.txt', 'COPYING'
system "make"
# we do our own install because theirs sucks
bin.install 'bin/7za'
man.install 'man1'
end
end