aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unp.rb
blob: d01b7a36efabbc56629aadb107c22e878bbc02d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'brewkit'

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