diff options
| author | Edward Muller | 2011-11-17 11:37:45 -0800 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-11-22 21:07:39 -0800 |
| commit | c9e35306e7fd4c82810509fea685e08e5a8b1bd8 (patch) | |
| tree | b26eea92f4366640e00c90bbe9b4a16735afec1b /Library/Formula | |
| parent | b29af94e3aa3a7a990ff269bf4f08418f0efc3f9 (diff) | |
| download | homebrew-c9e35306e7fd4c82810509fea685e08e5a8b1bd8.tar.bz2 | |
New Formula: squashfs
Closes #8648.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/squashfs.rb | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Library/Formula/squashfs.rb b/Library/Formula/squashfs.rb new file mode 100644 index 000000000..2593549a8 --- /dev/null +++ b/Library/Formula/squashfs.rb @@ -0,0 +1,60 @@ +require 'formula' + +class Squashfs < Formula + homepage 'http://squashfs.sourceforge.net/' + url 'http://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.0/squashfs4.0.tar.gz/download' + md5 'a3c23391da4ebab0ac4a75021ddabf96' + + def patches + { :p0 => DATA } + end + + def install + Dir.chdir 'squashfs-tools' do + system "make" + bin.install %w{mksquashfs unsquashfs} + end + + doc.install %w{ACKNOWLEDGEMENTS CHANGES COPYING INSTALL OLD-READMEs PERFORMANCE.README README README-4.0} + end +end + +__END__ + +Originally from some internal notes: + "cd squashfs-tools; sed -i.orig 's/\|FNM_EXTMATCH//' $(grep -l FNM_EXTMATCH *)" + "cd squashfs-tools; sed -i.orig $'/#include \"unsquashfs.h\"/{i\\\n#include <sys/sysctl.h>\n}' unsquashfs.c" + +diff -u squashfs-tools.orig/mksquashfs.c squashfs-tools/mksquashfs.c +--- squashfs-tools.orig/mksquashfs.c 2009-04-05 14:22:48.000000000 -0700 ++++ squashfs-tools/mksquashfs.c 2011-11-17 17:51:31.000000000 -0800 +@@ -3975,7 +3975,7 @@ + regexec(path->name[i].preg, name, (size_t) 0, + NULL, 0) == 0 : + fnmatch(path->name[i].name, name, +- FNM_PATHNAME|FNM_PERIOD|FNM_EXTMATCH) == ++ FNM_PATHNAME|FNM_PERIOD) == + 0; + + if(match && path->name[i].paths == NULL) { +Only in squashfs-tools: mksquashfs.c.orig +diff -u squashfs-tools.orig/unsquashfs.c squashfs-tools/unsquashfs.c +--- squashfs-tools.orig/unsquashfs.c 2009-04-05 14:23:06.000000000 -0700 ++++ squashfs-tools/unsquashfs.c 2011-11-17 17:51:44.000000000 -0800 +@@ -21,6 +21,7 @@ + * unsquashfs.c + */ + ++#include <sys/sysctl.h> + #include "unsquashfs.h" + #include "squashfs_swap.h" + #include "squashfs_compat.h" +@@ -1195,7 +1196,7 @@ + int match = use_regex ? + regexec(path->name[i].preg, name, (size_t) 0, + NULL, 0) == 0 : fnmatch(path->name[i].name, +- name, FNM_PATHNAME|FNM_PERIOD|FNM_EXTMATCH) == ++ name, FNM_PATHNAME|FNM_PERIOD) == + 0; + if(match && path->name[i].paths == NULL) + /* |
