diff --git a/AppKit/rakefile b/AppKit/Rakefile similarity index 100% rename from AppKit/rakefile rename to AppKit/Rakefile diff --git a/AppKit/Tools/BlendKit/Rakefile b/AppKit/Tools/BlendKit/Rakefile new file mode 100644 index 000000000..d64831f9a --- /dev/null +++ b/AppKit/Tools/BlendKit/Rakefile @@ -0,0 +1,31 @@ +#!/usr/bin/env ruby + +require 'rake' +require '../../../common' +require 'objective-j' +require 'objective-j/bundletask' + + +$ENVIRONMENT_PRODUCT = File.join($ENVIRONMENT_FRAMEWORKS_DIR, 'BlendKit') +$BUILD_PATH = File.join($BUILD_DIR, $CONFIGURATION, 'BlendKit') + +task :build => [:BlendKit, $ENVIRONMENT_PRODUCT] + +ObjectiveJ::BundleTask.new(:BlendKit) do |t| + t.name = 'BlendKit' + t.identifier = 'com.280n.BlendKit' + t.version = '0.6.5' + t.author = '280 North, Inc.' + t.email = 'feedback @nospam@ 280north.com' + t.summary = 'BlendKit classes for Cappuccino' + t.sources = FileList['*.j'] + t.resources = FileList['Resources/*'].to_a + t.license = ObjectiveJ::License::LGPL_v2_1 + t.build_path = $BUILD_PATH + t.flag = 'DEBUG' if $CONFIGURATION == 'Debug' +end + +#Framework in environment directory +file_d $ENVIRONMENT_PRODUCT => [:BlendKit] do + cp_r(File.join($BUILD_PATH, '.'), $ENVIRONMENT_PRODUCT) +end diff --git a/AppKit/Tools/blend/rakefile b/AppKit/Tools/blend/Rakefile similarity index 100% rename from AppKit/Tools/blend/rakefile rename to AppKit/Tools/blend/Rakefile diff --git a/Foundation/rakefile b/Foundation/Rakefile similarity index 100% rename from Foundation/rakefile rename to Foundation/Rakefile diff --git a/rakefile b/Rakefile similarity index 100% rename from rakefile rename to Rakefile