4f9f0d0bf5
- All Debian software is now mirrored by ftp.us.debian.org. - LibFFI is mirrored by ftp.sourceware.org. - All kernel.org software is now mirrored by mirrorservice.org. Fixes Homebrew/homebrew#7478.
19 lines
515 B
Ruby
19 lines
515 B
Ruby
require 'formula'
|
|
|
|
class Unp < Formula
|
|
url 'http://mirrors.kernel.org/debian/pool/main/u/unp/unp_1.0.15.tar.gz'
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/u/unp/unp_1.0.15.tar.gz'
|
|
homepage 'http://packages.debian.org/source/stable/unp'
|
|
md5 'bcf45819ac76093bba7b4a3f5b3a4bff'
|
|
|
|
depends_on 'p7zip'
|
|
|
|
def install
|
|
bin.install %w[unp ucat]
|
|
man1.install "debian/unp.1"
|
|
|
|
mv 'debian/README.Debian', 'README'
|
|
mv 'debian/copyright', 'COPYING'
|
|
mv 'debian/changelog', 'ChangeLog'
|
|
end
|
|
end
|