54 lines
1.9 KiB
Ruby
54 lines
1.9 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.16/dar-2.5.16.tar.gz"
|
|
sha256 "e957c97101a17dc91dca00078457f225d2fa375d0db0ead7a64035378d4fc33b"
|
|
|
|
bottle do
|
|
sha256 "ade6a894717bc00148d259f5c48b19172f12a307b84d2003f9a56ee95017d0a4" => :mojave
|
|
sha256 "b8e79c81345db6df1b985d0b05d7fef3f0f72c3a0dfd356cd048de5e483f31ed" => :high_sierra
|
|
sha256 "235d95dab2ef03ef746019989ca0939602903d79505bc3767d974f411996bb6b" => :sierra
|
|
sha256 "0f3d68d33877c3d98b9d8fbacdbd52c54569ccc1a46130ecec244415c58c5c73" => :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
|