homebrew-core/Formula/unp.rb
Martin Kuehl 990237b7d3 Fix case of README.Debian.
The 'Debian' part is capitalized, using the lowercase variant breaks on
case-sensitive volumes.
2009-12-19 17:58:48 +00:00

18 lines
463 B
Ruby

require 'formula'
class Unp <Formula
@url='http://ftp.de.debian.org/debian/pool/main/u/unp/unp_1.0.11.tar.gz'
@homepage='http://packages.debian.org/de/etch/unp'
@md5='ecea662bd7e7efe7f7e2213bf21d9646'
depends_on 'p7zip'
def install
bin.install %w[unp ucat]
man1.install "debian/unp.1"
FileUtils.mv 'debian/README.Debian', 'README'
FileUtils.mv 'debian/copyright', 'COPYING'
FileUtils.mv 'debian/changelog', 'ChangeLog'
end
end