blob: 07b4ddb1f3b1bc68ad41edc10b97680ff8fbf9c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Appswitch < Formula
homepage 'http://web.sabi.net/nriley/software/'
url 'http://web.sabi.net/nriley/software/appswitch-1.1.1.tar.gz'
sha1 'df5535adadfcf219c60d28397b99627ae7be3148'
def install
# Because the tarball always comes with a precompiled binary and because
# compiling this now would require using xcodebuild from a full XCode
# install, let's just use the binary so that we can support CLT only.
man1.install gzip('appswitch.1')
bin.install 'appswitch'
end
end
|