91 lines
3.5 KiB
Ruby
91 lines
3.5 KiB
Ruby
class Dpkg < Formula
|
|
desc "Debian package management system"
|
|
homepage "https://wiki.debian.org/Teams/Dpkg"
|
|
# Please always keep the Homebrew mirror as the primary URL as the
|
|
# dpkg site removes tarballs regularly which means we get issues
|
|
# unnecessarily and older versions of the formula are broken.
|
|
url "https://dl.bintray.com/homebrew/mirror/dpkg-1.19.7.tar.xz"
|
|
mirror "https://deb.debian.org/debian/pool/main/d/dpkg/dpkg_1.19.7.tar.xz"
|
|
sha256 "4c27fededf620c0aa522fff1a48577ba08144445341257502e7730f2b1a296e8"
|
|
|
|
bottle do
|
|
sha256 "947ec19c6eac9b3bcc782e3fa532ba68059015f2472201b8a889aa5a8d83f48b" => :catalina
|
|
sha256 "9fc12bcc3064791a813f0413aedf72ec9e0bfcd7a5dfc447e0d7b70f69db427f" => :mojave
|
|
sha256 "3f757fd0e875ade3fb35dee8fbb6b82fb53a2e33a350289e593622dcdd6190fe" => :high_sierra
|
|
sha256 "0f90b16944eeb6064250d8ab476688b559bd8ad5cc57351599db3a532068953d" => :sierra
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gnu-tar"
|
|
depends_on "gpatch"
|
|
depends_on "perl"
|
|
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"
|
|
|
|
# Since 1.18.24 dpkg mandates the use of GNU patch to prevent occurrences
|
|
# of the CVE-2017-8283 vulnerability.
|
|
# https://www.openwall.com/lists/oss-security/2017/04/20/2
|
|
ENV["PATCH"] = Formula["gpatch"].opt_bin/"patch"
|
|
|
|
# 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-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
|
|
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
|
|
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_predicate testpath/"test.deb", :exist?
|
|
|
|
rm_rf "test"
|
|
system bin/"dpkg", "-x", "test.deb", testpath
|
|
assert_predicate testpath/"data/homebrew.txt", :exist?
|
|
end
|
|
end
|