homebrew-core/Formula/esniper.rb

25 lines
1.3 KiB
Ruby

class Esniper < Formula
desc "Snipe eBay auctions from the command-line"
homepage "https://sourceforge.net/projects/esniper/"
url "https://downloads.sourceforge.net/project/esniper/esniper/2.35.0/esniper-2-35-0.tgz"
version "2.35.0"
sha256 "a93d4533e31640554f2e430ac76b43e73a50ed6d721511066020712ac8923c12"
license "BSD-2-Clause"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "6db787246047b9a9796d704b258f7f3c7a8f0d35eb77ea4eb5d766ee1c67895f"
sha256 cellar: :any_skip_relocation, big_sur: "8533d8f2e0a0e4cafbc9f3305db9cd5eccdcdd0651d7bc8f8331b625395c1aab"
sha256 cellar: :any_skip_relocation, catalina: "609f0b7d7331c4e61d274a83cbfc7157394d905a5840c6df7547140b5b0a44da"
sha256 cellar: :any_skip_relocation, mojave: "09be416cfab61002deed7613c367ccfa56c53cbe4e7ec6e1bf07df769313a7dc"
sha256 cellar: :any_skip_relocation, high_sierra: "24cb48a074e7e13cdaa2f0c990ea184352cd06f572134640fa99a42d699939ff"
sha256 cellar: :any_skip_relocation, sierra: "da1e8988910e0ab959e3750a31796d406b63e4c91ea05cd3f19415adc082f59f"
sha256 cellar: :any_skip_relocation, el_capitan: "d269d258369cfb214baa129ade61616121341c0129d820e9c77dec6b841ce0e1"
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end