7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
18 lines
430 B
Ruby
18 lines
430 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"
|
|
|
|
mv 'debian/README.Debian', 'README'
|
|
mv 'debian/copyright', 'COPYING'
|
|
mv 'debian/changelog', 'ChangeLog'
|
|
end
|
|
end
|