2011-12-21 23:28:59 +00:00
|
|
|
class Dpkg < Formula
|
2014-11-12 01:47:07 +00:00
|
|
|
homepage "https://wiki.debian.org/Teams/Dpkg"
|
2015-04-13 01:27:28 +00:00
|
|
|
url "https://mirrors.kernel.org/debian/pool/main/d/dpkg/dpkg_1.17.25.tar.xz"
|
|
|
|
mirror "http://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_1.17.25.tar.xz"
|
|
|
|
sha256 "07019d38ae98fb107c79dbb3690cfadff877f153b8c4970e3a30d2e59aa66baa"
|
2011-12-21 23:28:59 +00:00
|
|
|
|
2014-11-12 15:26:51 +00:00
|
|
|
bottle do
|
2015-04-24 02:39:17 +00:00
|
|
|
revision 1
|
|
|
|
sha256 "deea5a4f7724157f3d3d7b2dada03a3e471f848bf73c6df3466fee323dc7b217" => :yosemite
|
|
|
|
sha256 "ddcbb73e71f0820c8ed798561800a31e216eeb1e2b97d2a2b2a564421158b27d" => :mavericks
|
|
|
|
sha256 "79b0c0358973d0514a17bb578000d1d302e232ae36fde4bfd5d02cd1a6923f49" => :mountain_lion
|
2014-11-12 15:26:51 +00:00
|
|
|
end
|
|
|
|
|
2014-11-12 01:47:07 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "gnu-tar"
|
2015-04-13 01:27:28 +00:00
|
|
|
depends_on "xz" # For LZMA
|
2011-12-21 23:28:59 +00:00
|
|
|
|
|
|
|
def install
|
2015-04-13 01:27:28 +00:00
|
|
|
# Fix for OS X checksum utility names.
|
|
|
|
inreplace "scripts/Dpkg/Checksums.pm" do |s|
|
|
|
|
s.gsub! "md5sum", "md5"
|
|
|
|
s.gsub! "sha1sum", "shasum"
|
2015-04-24 01:55:25 +00:00
|
|
|
s.gsub! "sha256sum", "shasum', '-a', '256"
|
2014-11-12 01:47:07 +00:00
|
|
|
end
|
|
|
|
|
2014-05-09 00:09:44 +00:00
|
|
|
# We need to specify a recent gnutar, otherwise various dpkg C programs will
|
2014-11-12 01:47:07 +00:00
|
|
|
# use the system "tar", which will fail because it lacks certain switches.
|
2014-05-09 00:09:44 +00:00
|
|
|
ENV["TAR"] = Formula["gnu-tar"].opt_bin/"gtar"
|
2015-04-24 01:55:25 +00:00
|
|
|
|
|
|
|
# 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"
|
|
|
|
|
2011-12-21 23:28:59 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2015-04-13 01:27:28 +00:00
|
|
|
"--disable-silent-rules",
|
2015-04-24 01:55:25 +00:00
|
|
|
"--prefix=#{libexec}",
|
2015-04-13 01:27:28 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
|
|
|
"--localstatedir=#{var}",
|
2013-08-07 22:18:43 +00:00
|
|
|
"--disable-dselect",
|
2011-12-21 23:28:59 +00:00
|
|
|
"--disable-linker-optimisations",
|
2013-08-07 22:18:43 +00:00
|
|
|
"--disable-start-stop-daemon",
|
|
|
|
"--disable-update-alternatives"
|
2011-12-21 23:28:59 +00:00
|
|
|
system "make"
|
2014-11-12 01:47:07 +00:00
|
|
|
system "make", "install"
|
2015-04-24 01:55:25 +00:00
|
|
|
|
|
|
|
bin.install Dir["#{libexec}/bin/*"]
|
|
|
|
man.install Dir["#{libexec}/share/man/*"]
|
|
|
|
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
|
2011-12-21 23:28:59 +00:00
|
|
|
end
|
2013-03-11 21:57:04 +00:00
|
|
|
|
|
|
|
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
|
2011-12-21 23:28:59 +00:00
|
|
|
|
2014-11-12 01:47:07 +00:00
|
|
|
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
|
2015-04-13 01:27:28 +00:00
|
|
|
(testpath/"test/data/homebrew.txt").write <<-EOS.undent
|
|
|
|
Homebrew was here.
|
|
|
|
EOS
|
2014-11-12 01:47:07 +00:00
|
|
|
|
2015-04-13 01:27:28 +00:00
|
|
|
(testpath/"test/DEBIAN/control").write <<-EOS.undent
|
2014-11-12 01:47:07 +00:00
|
|
|
Package: test
|
|
|
|
Version: 1.40.99
|
|
|
|
Architecture: amd64
|
|
|
|
Description: I am a test
|
|
|
|
Maintainer: Dpkg Developers <test@test.org>
|
|
|
|
|
|
|
|
EOS
|
2015-04-13 01:27:28 +00:00
|
|
|
system bin/"dpkg", "-b", testpath/"test", "test.deb"
|
2014-11-12 01:47:07 +00:00
|
|
|
assert File.exist?("test.deb")
|
2015-04-13 01:27:28 +00:00
|
|
|
|
|
|
|
rm_rf "test"
|
|
|
|
system bin/"dpkg", "-x", "test.deb", testpath
|
|
|
|
assert File.exist?("data/homebrew.txt")
|
2014-11-12 01:47:07 +00:00
|
|
|
end
|
|
|
|
end
|