blob: 21d3053c310117827ae76bf70b61d835a2d826bf (
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-2a61018b554ed5854db05c37e79da4bc409c6dd8.tar.gz'
sha256 '07402dca523779f684121bfeeb5578b418e9eeb8c786c368667275cddc03b6f4'
license 'AGPL-3.0-or-later'
def install
system 'make'
system 'make', 'check'
system 'make', 'install', "PREFIX=#{prefix}"
end
end
|