aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlex Regueiro2012-12-29 23:51:24 +0000
committerAdam Vandenberg2013-01-04 14:31:25 -0800
commit4eb6460c686b4b67fe698b55cc5cbcc04f2a9f76 (patch)
tree1877cb92b8bc4dede288881f067164878dc21b66 /Library
parentca0ffd00dcc225e2652f96b38c39dda4637e07d9 (diff)
downloadhomebrew-4eb6460c686b4b67fe698b55cc5cbcc04f2a9f76.tar.bz2
osxutils 1.8
Closes #16792. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/osxutils.rb14
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