7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
82 lines
3.2 KiB
Ruby
82 lines
3.2 KiB
Ruby
class Dpkg < Formula
|
|
desc "Debian package management system"
|
|
homepage "https://wiki.debian.org/Teams/Dpkg"
|
|
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/d/dpkg/dpkg_1.18.10.tar.xz"
|
|
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/d/dpkg/dpkg_1.18.10.tar.xz"
|
|
sha256 "025524da41ba18b183ff11e388eb8686f7cc58ee835ed7d48bd159c46a8b6dc5"
|
|
|
|
bottle do
|
|
sha256 "47929bc2b33b461788e0d1b74846cda3ad2454862486220345ec54eebac9b36a" => :sierra
|
|
sha256 "1e13b24cd8b0ebcdc18974b2324d66e6b5c7e7984be8610ef098dacb8e592c3e" => :el_capitan
|
|
sha256 "2d4703e267cc69a932dc5c7849111a8504bae13f363fc34d469d43f47699c900" => :yosemite
|
|
sha256 "c859b1f92594ee0aa612bb3cd9a1a33fb9f7579ca0c23951d0bd0832a1080463" => :mavericks
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gnu-tar"
|
|
depends_on "xz" # For LZMA
|
|
|
|
def install
|
|
# We need to specify a recent gnutar, otherwise various dpkg C programs will
|
|
# use the system "tar", which will fail because it lacks certain switches.
|
|
ENV["TAR"] = Formula["gnu-tar"].opt_bin/"gtar"
|
|
|
|
# Theoretically, we could reinsert a patch here submitted upstream previously
|
|
# but the check for PERL_LIB remains in place and incompatible with Homebrew.
|
|
# Using an env and scripting is a solution less likely to break over time.
|
|
# Both variables need to be set. One is compile-time, the other run-time.
|
|
ENV["PERL_LIBDIR"] = libexec/"lib/perl5"
|
|
ENV.prepend_create_path "PERL5LIB", libexec+"lib/perl5"
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{libexec}",
|
|
"--sysconfdir=#{etc}",
|
|
"--localstatedir=#{var}",
|
|
"--disable-dselect",
|
|
"--disable-linker-optimisations",
|
|
"--disable-start-stop-daemon"
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
bin.install Dir[libexec/"bin/*"]
|
|
man.install Dir[libexec/"share/man/*"]
|
|
(lib/"pkgconfig").install_symlink Dir[libexec/"lib/pkgconfig/*.pc"]
|
|
bin.env_script_all_files(libexec/"bin", :PERL5LIB => ENV["PERL5LIB"])
|
|
|
|
(buildpath/"dummy").write "Vendor: dummy\n"
|
|
(etc/"dpkg/origins").install "dummy"
|
|
(etc/"dpkg/origins").install_symlink "dummy" => "default"
|
|
end
|
|
|
|
def post_install
|
|
(var/"lib/dpkg").mkpath
|
|
(var/"log").mkpath
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
This installation of dpkg is not configured to install software, so
|
|
commands such as `dpkg -i`, `dpkg --configure` will fail.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
# Do not remove the empty line from the end of the control file
|
|
# All deb control files MUST end with an empty line
|
|
(testpath/"test/data/homebrew.txt").write "brew"
|
|
(testpath/"test/DEBIAN/control").write <<-EOS.undent
|
|
Package: test
|
|
Version: 1.40.99
|
|
Architecture: amd64
|
|
Description: I am a test
|
|
Maintainer: Dpkg Developers <test@test.org>
|
|
|
|
EOS
|
|
system bin/"dpkg", "-b", testpath/"test", "test.deb"
|
|
assert File.exist?("test.deb")
|
|
|
|
rm_rf "test"
|
|
system bin/"dpkg", "-x", "test.deb", testpath
|
|
assert File.exist?("data/homebrew.txt")
|
|
end
|
|
end
|