aboutsummaryrefslogtreecommitdiff
path: root/Formula/guile-heredoc.rb
blob: 3f24ecfd2cb4521074b4315d7cb464a47b5e35ee (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class GuileHeredoc < Formula
  desc 'Guile heredoc syntax'
  homepage 'https://euandre.org/s/guile-heredoc'
  url 'https://euandre.org/git/guile-heredoc/snapshot/guile-heredoc-065435cdce609604e33b879b9be3e81ab89f3e7b.tar.xz'
  sha256 '4d6e5171f36d48ab2341cc9e3346262f9ec7c9f0fd3d88ec6e204ef2160821f8'
  license 'AGPL-3.0-or-later'

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

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