39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
class P7zip < Formula
|
|
desc "7-Zip (high compression file archiver) implementation"
|
|
homepage "http://p7zip.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/p7zip/p7zip/9.20.1/p7zip_9.20.1_src_all.tar.bz2"
|
|
sha1 "1cd567e043ee054bf08244ce15f32cb3258306b7"
|
|
|
|
devel do
|
|
url "https://downloads.sourceforge.net/project/p7zip/p7zip/9.38.1/p7zip_9.38.1_src_all.tar.bz2"
|
|
sha1 "6b1eccf272d8b141a94758f80727ae633568ba69"
|
|
end
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
revision 2
|
|
sha256 "ca8c3e999af9b2dcd7ba4889c94111b0ab8971eb4234f4935a5d0d644ec755d8" => :el_capitan
|
|
sha256 "d92cf7a481836bfc5b2292d636d45333b1946b82835510329eb0aa17483978ed" => :yosemite
|
|
sha256 "c621e245f8b0912e135861756e3b3f443858f3d8291887d2438acbf3c09f4ee3" => :mavericks
|
|
end
|
|
|
|
option "32-bit"
|
|
|
|
def install
|
|
if Hardware.is_32_bit? || build.build_32_bit?
|
|
mv "makefile.macosx_32bits", "makefile.machine"
|
|
else
|
|
mv "makefile.macosx_64bits", "makefile.machine"
|
|
end
|
|
|
|
# install.sh chmods to 444, which is bad and breaks uninstalling
|
|
inreplace "install.sh", /chmod (444|555).*/, ""
|
|
|
|
system "make", "all3",
|
|
"CC=#{ENV.cc} $(ALLFLAGS)",
|
|
"CXX=#{ENV.cxx} $(ALLFLAGS)"
|
|
system "make", "DEST_HOME=#{prefix}",
|
|
"DEST_MAN=#{man}",
|
|
"install"
|
|
end
|
|
end
|