aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-extended-auto-builder.sh
blob: 4c5935b60cfb8d2d42f34e3a54c3e28968e1a880 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/sh
# this script is the first attempt to have an automated updater and builder

# the source dir where this script is
SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
. $SCRIPT_DIR/auto-build-common

# the name of this script
SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`

BUILD_DIR=.
case $SYSTEM in 
	 linux)
		  BUILD_DIR=linux_make
		  echo "Configuring to use $BUILD_DIR on GNU/Linux"
		  ;;
	 darwin)
		  BUILD_DIR=darwin_app
		  echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
		  ;;
	 mingw*)
		  BUILD_DIR=win32_inno
		  echo "Configuring to use $BUILD_DIR on MinGW/Windows"
		  ;;
	 cygwin*)
		  BUILD_DIR=win32_inno
		  echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
		  ;;
	 *)
		  echo "ERROR: Platform $SYSTEM not supported!"
		  exit
		  ;;
esac


# convert into absolute path
cd `echo $0 | sed 's|\(.*\)/.*$|\1|'`/../..
auto_build_root_dir=`pwd`
echo "root: $auto_build_root_dir" 

# let rsync handle the cleanup with --delete
case $SYSTEM in
	mingw*)
		/c/cygwin/bin/sh --login -c \
			"rsync -a --delete rsync://128.238.56.50/distros/pd-extended/ ${auto_build_root_dir}/"
		;;
	*)
		rsync -a --delete rsync://128.238.56.50/distros/pd-extended/ ${auto_build_root_dir}/
		;;
esac

cd "${auto_build_root_dir}/packages/$BUILD_DIR"
make -C "${auto_build_root_dir}/packages" set_version
make test_locations
ls -l /usr/local/include/stdlib.h || echo no /usr/local/include/stdlib.h
mount
make package_clean
make install && make package


upload_build ()
{
    platform_folder=$1
    build_folder=$2
    archive_format=$3

	 archive="${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format}"
    
    echo "upload specs $1 $2 $3"
    echo "Uploading $archive"
	 upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
	 case $SYSTEM in 
		  mingw*)
				if [ -e ${archive} ]; then
					 /c/cygwin/bin/sh --login -c \
						  "rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}" && \
						  md5sum ${archive} > ${archive}.md5 && \
						  /c/cygwin/bin/sh --login -c \
						  "rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5" && \
						  echo SUCCESS
				fi
				;;
		  *)
				if [ -e ${archive} ]; then
					 rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}  && \
						  md5sum ${archive} > ${archive}.md5 && \
						  rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5  && \
						  echo SUCCESS
				fi
				;;
		  esac
}


case $SYSTEM in 
	 linux)
		  if [ -x /usr/bin/dpkg-deb ]; then
				upload_build linux_make . deb
		  else
				upload_build linux_make build tar.bz2
		  fi
		  ;;
	 darwin)
		  upload_build darwin_app . dmg
		  ;;
	 mingw*)
		  upload_build win32_inno Output exe
		  ;;
	 cygwin*)
		  upload_build win32_inno Output exe
		  ;;
esac