summaryrefslogtreecommitdiffstats
path: root/makerelease.sh
blob: 27cee2a9a56ce6633f7e6a3c26f235bca4497468 (plain)
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
#!/bin/sh

srcdir="$(dirname "$0")"
[ "$(echo "$srcdir" | cut -c1)" = '/' ] || srcdir="$PWD/$srcdir"

die() { echo "$*"; exit 1; }

# Import the makerelease.lib
# http://bues.ch/gitweb?p=misc.git;a=blob_plain;f=makerelease.lib;hb=HEAD
for path in $(echo "$PATH" | tr ':' ' '); do
	[ -f "$MAKERELEASE_LIB" ] && break
	MAKERELEASE_LIB="$path/makerelease.lib"
done
[ -f "$MAKERELEASE_LIB" ] && . "$MAKERELEASE_LIB" || die "makerelease.lib not found."

hook_get_version()
{
	local file="$1/host/pymoistcontrol/util.py"
	local v="$(cat "$file" | grep -e VERSION | head -n1 | awk '{print $3;}' | cut -d'"' -f2)"
	version=v"$v"
}

hook_pre_archives()
{
	# Build the hex file before packing the tarball.
	default_hook_testbuild "$2"/firmware/
	cp "$2"/firmware/moistcontrol.hex "$2"/firmware-progmem.hex
	cp "$2"/firmware/moistcontrol.eep.hex "$2"/firmware-eeprom.hex

	cd "$2"/firmware
	make clean
}

project=moistcontrol
makerelease "$@"
bues.ch cgit interface