diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/afsctool.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/afsctool.rb b/Library/Formula/afsctool.rb new file mode 100644 index 000000000..6d23c5744 --- /dev/null +++ b/Library/Formula/afsctool.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Afsctool <Formula + url 'http://web.me.com/brkirch/afsctool_34.zip' + homepage 'http://web.me.com/brkirch/brkirchs_Software/afsctool/afsctool.html' + md5 'd0f2b79676c0f3d8c22e95fcf859a05f' + version '1.6.4' + + def install + ENV.fast + Dir.chdir "afsctool_34" do + system "#{ENV['CC']} #{ENV['CFLAGS']} -lz -framework CoreServices -o afsctool afsctool.c" + bin.install 'afsctool' + end + end +end |
