1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
###########
# KiCad OSX DMG packaging
# Create a bin directory and copy the .app files in
# Create a build directory
# Then execute the makefile
#
# Original credits by Adium developers !
# http://www.adium.im
###########
VERSION=20100118
###########
# Variables
###########
BUILD_DIR=build
APP_DIR=release
KICAD_DIR=$(BUILD_DIR)
RELEASE_NAME=kicad-$(VERSION)
###########
# Targets
###########
all:
rm -rfv build
mkdir build
cp -r $(APP_DIR)/* $(BUILD_DIR)
mkdir -p $(BUILD_DIR)/.background
cp Artwork/dmgBackground.png $(BUILD_DIR)/.background
./mkalias -r /Applications $(BUILD_DIR)/Applications
mkdir -p $(BUILD_DIR)/.background
./make-diskimage.sh $(BUILD_DIR)/$(RELEASE_NAME).dmg $(KICAD_DIR) "KiCad $(VERSION)" dmg_kicad.scpt $(ART_DIR)
@echo Build finished. `md5 $(BUILD_DIR)/$(RELEASE_NAME).dmg`