30 lines
932 B
Ruby
30 lines
932 B
Ruby
class Unp < Formula
|
|
desc "Unpack everything with one command"
|
|
homepage "https://packages.debian.org/source/stable/unp"
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/u/unp/unp_2.0~pre7+nmu1.tar.bz2"
|
|
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/u/unp/unp_2.0~pre7+nmu1.tar.bz2"
|
|
version "2.0-pre7-nmu1"
|
|
sha256 "7c2d6f2835a5a59ee2588b66d8015d97accd62e71e38ba90ebd4d71d8fd78227"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "p7zip"
|
|
|
|
def install
|
|
bin.install %w[unp ucat]
|
|
man1.install "debian/unp.1"
|
|
bash_completion.install "bash_completion.d/unp"
|
|
%w[COPYING CHANGELOG].each { |f| rm f }
|
|
mv "debian/README.Debian", "README"
|
|
mv "debian/copyright", "COPYING"
|
|
mv "debian/changelog", "ChangeLog"
|
|
end
|
|
|
|
test do
|
|
path = testpath/"test"
|
|
path.write "Homebrew"
|
|
system "gzip", "test"
|
|
system "#{bin}/unp", "test.gz"
|
|
assert_equal "Homebrew", path.read
|
|
end
|
|
end
|