aboutsummaryrefslogblamecommitdiff
path: root/Formula/td.rb
blob: b005c828b3fe25a921e2e2e787b27025fc0c7a65 (plain) (tree)
1
2
3

                                     
                                      













                                                                                              
class Td < Formula
  desc 'Minimalistic bug tracker CLI'
  homepage 'https://euandre.org/s/td/'
  url 'https://euandre.org/git/td/snapshot/td-4a8a7a2662c94b2581f587e9a4b81feba4f5e7d8.tar.xz'
  sha256 'a25561ae8062788bfb79df2de5f26e5f1100638fbeabff934490cdf0a9dde105'
  license 'AGPL-3.0-or-later'

  def install
    system 'make'
    system 'make', 'check'
    system 'make', 'install', "PREFIX=#{prefix}"
  end

  test do
    system "#{bin}/td", '-V'
  end
end