class Pxz < Formula desc "Compression utility" homepage "https://jnovy.fedorapeople.org/pxz/" url "https://jnovy.fedorapeople.org/pxz/pxz-4.999.9beta.20091201git.tar.xz" version "4.999.9" sha256 "df69f91103db6c20f0b523bb7f026d86ee662c49fe714647ed63f918cd39767a" revision 3 bottle do cellar :any sha256 "1738cf9c7c505f98f95a4d94b7ba93e6fe82c59265fa956ae64edcc58a6f790c" => :high_sierra sha256 "784583598c5f23b891b6e16009140bc618b637fbcbb8c5270355442644a0f6a6" => :sierra sha256 "075f12e4d6e6dc819e2d28ba12efc01870193fd5de4fde999977189c20377624" => :el_capitan end head do url "https://github.com/jnovy/pxz.git" # Rebased version of an upstream PR to fix the build on macOS # https://github.com/jnovy/pxz/pull/5 patch :DATA end depends_on "gcc" depends_on "xz" fails_with :clang do cause "pxz requires OpenMP support" end def install # Fixes usage of MAP_POPULATE for mmap (linux only). Fixed upstream. inreplace "pxz.c", "MAP_SHARED|MAP_POPULATE", "MAP_SHARED" if build.stable? system "make", "CC=#{ENV.cc}" system "make", "install", "BINDIR=#{bin}", "MANDIR=#{man}" end test do (testpath/"test").write "foo bar" system "#{bin}/pxz", "test" assert_predicate testpath/"test.xz", :exist? end end __END__ diff --git a/pxz.c b/pxz.c index 153f28c..d76f94a 100644 --- a/pxz.c +++ b/pxz.c @@ -23,11 +23,36 @@ #include #include +#ifdef HAVE_STDIO_EXT_H #include +#else +#include +#ifdef BSD +#define __fpending(fp) ((fp)->_p - (fp)->_bf._base) +#endif +#endif #include #include #include +#ifdef HAVE_ERROR_H #include +#else +#include +/* Emulate the error() function from GLIBC */ +char* program_name; +void error(int status, int errnum, const char *format, ...) { + va_list argp; + fprintf(stderr, "%s: ", program_name); + va_start(argp, format); + vfprintf(stderr, format, argp); + va_end(argp); + if (errnum != 0) + fprintf(stderr, ": error code %d", errnum); + fprintf(stderr, "\n"); + if (status != 0) + exit(status); +} +#endif #include #include #include @@ -258,6 +283,7 @@ int main( int argc, char **argv ) { lzma_filter filters[LZMA_FILTERS_MAX + 1]; lzma_options_lzma lzma_options; + program_name = argv[0]; xzcmd_max = sysconf(_SC_ARG_MAX); page_size = sysconf(_SC_PAGE_SIZE); xzcmd = malloc(xzcmd_max);