aboutsummaryrefslogtreecommitdiff
path: root/Formula/sharedc-latest.rb
blob: e167ff90eec88396f2b31dfa1e830a3c198fa3f2 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class SharedcLatest < Formula
  desc 'Multi-purpose C data structures, algorithms and utility functions'
  homepage 'https://sharedc.euandreh.xyz'
  url 'https://git.euandreh.xyz/sharedc/snapshot/sharedc-162309874927efb8a1aca9665decb168249965f8.tar.gz'
  sha256 '47df0af2633639b5305b13689ff1a095a092369a93d2cd459a5a37e3afd5a51c'
  license 'AGPL-3.0-or-later'

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