aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pixz.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/Library/Formula/pixz.rb b/Library/Formula/pixz.rb
new file mode 100644
index 000000000..bb2e81287
--- /dev/null
+++ b/Library/Formula/pixz.rb
@@ -0,0 +1,34 @@
+require 'formula'
+
+class Pixz < Formula
+ homepage 'https://github.com/vasi/pixz'
+ url 'http://sourceforge.net/projects/pixz/files/pixz-1.0.2.tgz'
+ sha1 '953b2b55504ba349f1e7e47bdfcd4165ba206827'
+
+ head 'https://github.com/vasi/pixz.git'
+
+ option 'with-docs', 'Build man pages using asciidoc and DocBook'
+
+ depends_on 'libarchive'
+ depends_on 'xz'
+
+ if build.with? 'docs'
+ depends_on 'asciidoc' => :build
+ depends_on 'docbook' => :build
+ end
+
+ def install
+ system 'make'
+ bin.install 'pixz'
+
+ if build.with? 'docs'
+ ENV['XML_CATALOG_FILES'] = "#{HOMEBREW_PREFIX}/etc/xml/catalog"
+ system 'a2x --doctype manpage --format manpage pixz.1.asciidoc'
+ man1.install 'pixz.1'
+ end
+ end
+
+ test do
+ system "#{bin}/pixz"
+ end
+end