diff options
| author | Alex Regueiro | 2012-12-29 23:51:24 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-04 14:31:25 -0800 |
| commit | 4eb6460c686b4b67fe698b55cc5cbcc04f2a9f76 (patch) | |
| tree | 1877cb92b8bc4dede288881f067164878dc21b66 /Library/Formula | |
| parent | ca0ffd00dcc225e2652f96b38c39dda4637e07d9 (diff) | |
| download | homebrew-4eb6460c686b4b67fe698b55cc5cbcc04f2a9f76.tar.bz2 | |
osxutils 1.8
Closes #16792.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/osxutils.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/osxutils.rb b/Library/Formula/osxutils.rb new file mode 100644 index 000000000..97f4a56fd --- /dev/null +++ b/Library/Formula/osxutils.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Osxutils < Formula + homepage 'https://github.com/vasi/osxutils' + url 'https://github.com/vasi/osxutils/archive/v1.8.tar.gz' + sha1 'c3d20da36ecfae3abff07f482a572b3680a12b6d' + + head 'git://github.com/vasi/osxutils.git' + + def install + system 'make' + system 'make', "PREFIX=#{prefix}", 'install' + end +end |
