blob: 3392926d7a8116c0a08315bc388b6695a05fac6c (
plain) (
tree)
|
|
class GitPermalink010 < Formula
desc 'Git extension to generate web permalinks of files in a repository'
homepage 'https://euandre.org/s/git-permalink/'
url 'https://euandre.org/git/git-permalink/snapshot/git-permalink-v0.1.0.tar.xz'
sha256 '252c98e349fed8df180ace540675b69a811ff56a9f06fa505eb475e047648a1f'
license 'AGPL-3.0-or-later'
def install
system 'make'
system 'make', 'check'
system 'make', 'install', "PREFIX=#{prefix}"
end
test do
system "#{bin}/git-permalink", '-V'
end
end
|