aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-extended-source-tarball.sh
blob: 9a557bd60f3205e508fa0be9c6c98e90e7ffe048 (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
#!/bin/sh

set -x

# the source dir where this script is
## this could be done more easily with ${0%/*}
SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|')
. $SCRIPT_DIR/auto-build-common

# convert into absolute path
cd "${SCRIPT_DIR}/../.."
auto_build_root_dir=`pwd`
echo "build root: $auto_build_root_dir" 

$SCRIPT_DIR/pd-extended-auto-builder.sh source-tarball-only

# the version is set by the above script, so keep this after
version=$(get_pd_version $auto_build_root_dir)

source=`ls -1 /tmp/Pd-extended*$version*-source.tar.bz2 | tail -1`
debian=`ls -1 /tmp/Pd-extended*$version*.debian.tar.bz2 | tail -1`
upload_filename=$(basename $source)
rsync -a --chmod=a+r ${source} rsync://blinky.at.or.at/upload/${DATE}/${upload_filename}  && \
	md5sum ${source} > ${source}.md5 && \
	rsync -a ${source}.md5 rsync://blinky.at.or.at/upload/${DATE}/${upload_filename}.md5  && \
    rsync -a --chmod=a+r ${debian} rsync://blinky.at.or.at/upload/${DATE}/${upload_filename}  && \
	md5sum ${debian} > ${debian}.md5 && \
	rsync -a ${debian}.md5 rsync://blinky.at.or.at/upload/${DATE}/${upload_filename}.md5  && \
    rm $source && rm $source.md5 && \
    rm $debian && rm $debian.md5 && \
	echo "successfully uploaded: ${upload_filename}" && \
	echo SUCCESS