mocra / iconmerge

Create composite icon image from two icons, with 2nd image as a thumbnail on top of the 1st

This URL has Read+Write access

iconmerge / Rakefile
100644 18 lines (14 sloc) 0.407 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "rubygems"
require "rake"
 
require "choctop"
 
ChocTop.new do |s|
  # Remote upload target
  s.remote_dir = '/opt/apps/mocra/shared/project_downloads/iconmerge'
 
  # Custom DMG
  s.background_file = "dmgbackground.png"
  s.app_icon_position = [150, 160]
  s.applications_icon_position = [469, 160]
  s.icon_text_size = 14
  s.applications_icon = "appicon.icns"
  s.volume_icon = "dmgicon.icns"
end