aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSébastien Gross2012-08-14 09:31:38 +0200
committerAdam Vandenberg2012-11-11 13:06:05 -0800
commit5e83d6ef95e7a241f816e8fd01dd0e6e20b428f2 (patch)
tree1eb6b22a3a41ecf2eb2f065d7f6696ced5fcf66b /Library
parent7d4ada618532e54c73956787891f639dcd8e0f33 (diff)
downloadhomebrew-5e83d6ef95e7a241f816e8fd01dd0e6e20b428f2.tar.bz2
dylibbundler 0.4.1
Closes #14171. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dylibbundler.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/Library/Formula/dylibbundler.rb b/Library/Formula/dylibbundler.rb
new file mode 100644
index 000000000..45e5a0790
--- /dev/null
+++ b/Library/Formula/dylibbundler.rb
@@ -0,0 +1,25 @@
+require 'formula'
+
+class Dylibbundler < Formula
+ homepage 'http://macdylibbundler.sourceforge.net'
+ url 'http://sourceforge.net/projects/macdylibbundler/files/macdylibbundler/0.4.1/dylibbundler0.4.1.zip'
+ sha1 'ea80b57a487da3df3e3cc508573bf18268100464'
+
+ def install
+ system "make"
+ bin.install "dylibbundler"
+ end
+
+ def test
+ system "#{bin}/dylibbundler", "-h"
+ end
+
+ def caveats; <<-EOS.undent
+ Documentation at:
+ #{homepage}
+
+ Usage example:
+ dylibbundler -od -b -x ./HelloWorld.app/Contents/MacOS/helloworld -d ./HelloWorld.app/Contents/libs/
+ EOS
+ end
+end