homebrew-core/Formula/dylibbundler.rb

26 lines
881 B
Ruby
Raw Normal View History

class Dylibbundler < Formula
desc "Utility to bundle libraries into executables for OS X"
homepage "https://github.com/auriamg/macdylibbundler"
url "https://downloads.sourceforge.net/project/macdylibbundler/macdylibbundler/0.4.4/dylibbundler-0.4.4.zip"
sha256 "65d050327df99d12d96ae31a693bace447f4115e6874648f1b3960a014362200"
head "https://github.com/auriamg/macdylibbundler.git"
2014-07-03 12:32:21 +00:00
bottle do
2015-09-22 11:50:25 +00:00
cellar :any_skip_relocation
2014-10-21 08:58:31 +00:00
revision 1
2015-09-22 11:50:25 +00:00
sha256 "5dff018e62a9787871e45f4ae976358cfc3f7f85972a0aa0d4e039f97d4b8e0f" => :el_capitan
2014-10-21 08:58:31 +00:00
sha1 "7796af4a80af52b2cda87f9a6af74919811cddb4" => :yosemite
sha1 "af56868cede7747f2559320659654e017cb0144a" => :mavericks
sha1 "81c315d6fbaea3b56ba78e967953f3f8a11d08ec" => :mountain_lion
2014-07-03 12:32:21 +00:00
end
def install
system "make"
bin.install "dylibbundler"
end
test do
system "#{bin}/dylibbundler", "-h"
end
end