blob: e7809a4da82cfa0623487e01e8192bf52e4b52e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Authexec < Formula
homepage 'https://github.com/tcurdt/authexec'
url 'https://github.com/tcurdt/authexec/archive/1.0.tar.gz'
sha1 '73d8fb4202ae99057691788442bb192972ef304c'
head 'https://github.com/tcurdt/authexec.git'
def install
system 'make all'
bin.install 'authexec'
end
end
|