45 lines
1.6 KiB
Ruby
45 lines
1.6 KiB
Ruby
class Abook < Formula
|
|
desc "Address book with mutt support"
|
|
homepage "https://abook.sourceforge.io/"
|
|
url "https://abook.sourceforge.io/devel/abook-0.6.1.tar.gz"
|
|
sha256 "f0a90df8694fb34685ecdd45d97db28b88046c15c95e7b0700596028bd8bc0f9"
|
|
license "GPL-2.0"
|
|
head "https://git.code.sf.net/p/abook/git.git", branch: "master"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
strategy :page_match
|
|
regex(/href=.*?abook[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "e062925ce6b559649d5574f2ee4a709611df4a9a54f3396cf706c2a399cc747f"
|
|
sha256 big_sur: "0c4b7d1c41dbd920e192711e8ed1200db46c30be141aaaeb606c41718d0c2a79"
|
|
sha256 catalina: "09e77aa3db2cf8a702effbebbbf83f7a2f860b0d5db6bcf37549edb7db5438a7"
|
|
sha256 mojave: "a6ab99c751a03e11e2ace660ad9325a9fe4262598f284c0fb87626778383e29d"
|
|
sha256 high_sierra: "a0461ecc678e5cb65a901bd39dbd7f0f8015a29ed605e6cf28f1315d5c347ecb"
|
|
sha256 x86_64_linux: "32ec309e47f9cc195c0bc8c9bccdf1169ff91e211991eeb1fb04d91872c3be51"
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gettext"
|
|
depends_on "readline"
|
|
|
|
def install
|
|
# fix "undefined symbols" error caused by C89 inline behaviour
|
|
inreplace "database.c", "inline int", "int"
|
|
|
|
system "autoreconf", "-ivf"
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/abook", "--formats"
|
|
end
|
|
end
|