blob: 8256068e3e0b5e3900904ca1adbfe28b55d39455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Authexec < Formula
head 'https://github.com/tcurdt/authexec.git'
homepage 'https://github.com/tcurdt/authexec'
def install
system 'make all'
bin.install 'authexec'
end
end
|