2010-03-12 01:18:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sleepnow < Formula
|
2010-03-12 01:18:25 +00:00
|
|
|
url 'http://www.snoize.com/SleepNow/SleepNow.tar.gz'
|
|
|
|
version '20070603' # Jun 3 2007 source
|
|
|
|
homepage 'http://www.snoize.com/SleepNow/'
|
|
|
|
md5 'a9555e48d9719868dd9ec7ce1423861b'
|
|
|
|
|
|
|
|
def install
|
|
|
|
Dir.chdir('Source') do
|
|
|
|
# Remove unneeded SDK reference
|
|
|
|
inreplace "SleepNow.xcodeproj/project.pbxproj", /SDKROOT.*$/, ''
|
|
|
|
|
2010-10-21 14:54:17 +00:00
|
|
|
# Build binary
|
2011-03-03 20:29:10 +00:00
|
|
|
system "xcodebuild", "-target", "SleepNow", "-configuration", "Release", "ONLY_ACTIVE_ARCH=YES", "SYMROOT=build"
|
2010-03-12 01:18:25 +00:00
|
|
|
|
|
|
|
# Install binary and rename to lowercase
|
|
|
|
bin.install 'build/Release/SleepNow' => 'sleepnow'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|