homebrew-core/Formula/sfk.rb

27 lines
1 KiB
Ruby
Raw Normal View History

class Sfk < Formula
desc "Command Line Tools Collection"
homepage "http://stahlworks.com/dev/swiss-file-knife.html"
url "https://downloads.sourceforge.net/project/swissfileknife/1-swissfileknife/1.7.5/sfk-1.7.5.tar.gz"
sha256 "f15b4bd974285138d857500ddf4563d8e77146ece967867944f09edb15e745c7"
2015-04-14 02:09:59 +00:00
bottle do
cellar :any
2015-07-10 02:26:29 +00:00
sha256 "42ced5ac947ad0c40cc4f24ef19415ed349929687b89a41d1f558ccfe7d0f434" => :yosemite
sha256 "ad2b87b8118e5c9c5dc6b41207430c29c9a55ca8058e1b8c4210045849398e8e" => :mavericks
sha256 "40b99819db133c2b283375d9cd5a6854b962085e69def10e936fc0dff8cd2826" => :mountain_lion
2015-04-14 02:09:59 +00:00
end
def install
# Using the standard ./configure && make install method does not work with sfk as of this version
# As per the build instructions for OS X, this is all you need to do to build sfk
system ENV.cxx, "-DMAC_OS_X", "sfk.cpp", "sfkext.cpp", "-o", "sfk"
# The sfk binary is all you need. There are no man pages or share files
bin.install "sfk"
end
test do
system "sfk", "ip"
end
end