homebrew-core/Formula/liblockfile.rb
2019-10-08 22:11:56 -04:00

38 lines
1.4 KiB
Ruby

class Liblockfile < Formula
desc "Library providing functions to lock standard mailboxes"
homepage "https://tracker.debian.org/pkg/liblockfile"
url "https://deb.debian.org/debian/pool/main/libl/liblockfile/liblockfile_1.16.orig.tar.gz"
sha256 "cf6e3828ced3fcc7e5ed36b7dabdf9e0e3ba55a973dab8ed212fb86afc901c69"
bottle do
sha256 "e5991a3eac0b5cd41f2850d73643607c33bb41b7014105f0ed80b75c5e7ef866" => :catalina
sha256 "18663ff713cb46c514546f5a73026deb4e3df5b701b082b5cd68275581b05ba8" => :mojave
sha256 "bc532693f97e4d14ac59974b80f5a31b121b5cc404efb2aacda1c1607f4bcf5b" => :high_sierra
end
def install
# brew runs without root privileges (and the group is named "wheel" anyway)
inreplace "Makefile.in", " -g root ", " "
system "./configure", "--disable-dependency-tracking",
"--disable-debug",
"--with-mailgroup=staff",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--mandir=#{man}"
bin.mkpath
lib.mkpath
include.mkpath
man1.mkpath
man3.mkpath
system "make"
system "make", "install"
end
test do
system bin/"dotlockfile", "-l", "locked"
assert_predicate testpath/"locked", :exist?
system bin/"dotlockfile", "-u", "locked"
refute_predicate testpath/"locked", :exist?
end
end