aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unp.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/unp.rb b/Library/Formula/unp.rb
new file mode 100644
index 000000000..50ab9ea8c
--- /dev/null
+++ b/Library/Formula/unp.rb
@@ -0,0 +1,20 @@
+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'
+
+ def deps
+ BinaryDep.new 'p7zip'
+ end
+
+ 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