homebrew-core/Formula/dar.rb
2016-10-30 09:14:20 +01:00

52 lines
1.7 KiB
Ruby

class Dar < Formula
desc "Backup directory tree and files"
homepage "http://dar.linux.free.fr/doc/index.html"
url "https://downloads.sourceforge.net/project/dar/dar/2.5.7/dar-2.5.7.tar.gz"
sha256 "f4fa3b5d8d38a299e4463dbf77e104c572be669838e16a3d507dce7173d1561d"
bottle do
sha256 "8ea6fa265e1e726523b0777eaf2e1eb04ef341da14f3e29df7f943da01b4b257" => :sierra
sha256 "863b71da148407bb709b253abf8226e8ad6027a75ed0e29108d2f4663bcdb644" => :el_capitan
end
option "with-doxygen", "build libdar API documentation and html man page"
option "with-libgcrypt", "enable strong encryption support"
option "with-lzo", "enable lzo compression support"
option "with-upx", "make executables compressed at installation time"
deprecated_option "with-docs" => "with-doxygen"
depends_on :macos => :el_capitan # needs thread-local storage
depends_on "doxygen" => [:build, :optional]
depends_on "upx" => [:build, :optional]
depends_on "libgcrypt" => :optional
depends_on "lzo" => :optional
depends_on "xz" => :optional
needs :cxx11
def install
ENV.cxx11
args = %W[
--enable-mode=64
--disable-debug
--disable-dependency-tracking
--disable-dar-static
--prefix=#{prefix}
]
args << "--disable-build-html" if build.without? "doxygen"
args << "--disable-upx" if build.without? "upx"
args << "--disable-libgcrypt-linking" if build.without? "libgcrypt"
args << "--disable-liblzo2-linking" if build.without? "lzo"
args << "--disable-libxz-linking" if build.without? "xz"
system "./configure", *args
system "make", "install"
end
test do
system bin/"dar", "-c", "test", "-R", "./Library"
system bin/"dar", "-d", "test", "-R", "./Library"
end
end