blob: bce1d2b69eec6436a6a024a5293d745c795be249 (
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 ENV.cc, 'authexec.c', '-framework', 'Security', '-o', 'authexec'
bin.install 'authexec'
end
end
|