mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
945f3d1c5b
No functional changes - except protobuffer is mandatory and not optional now. Former-commit-id: 1e6347e708707cc388cdedb8d0352a9f017030b8
31 lines
913 B
Bash
Executable File
31 lines
913 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$#" -ne 2 ] || ! [ -d "$1" ] || ! [ -d "$2" ]; then
|
|
echo "Usage: $0 <BUILD-DIR> <REPO-DIR>" >&2
|
|
exit 1
|
|
fi
|
|
|
|
builddir="$1"
|
|
repodir="$2"
|
|
echo build directory = $builddir
|
|
echo repository root dirrectory = $repodir
|
|
|
|
outfile="$repodir/deploy/hyperion.tar.gz"
|
|
echo create $outfile
|
|
|
|
tar --create --verbose --gzip --absolute-names --show-transformed-names \
|
|
--file "$outfile" \
|
|
--transform "s:$builddir/bin/:hyperion/bin/:" \
|
|
--transform "s:$repodir/effects/:hyperion/effects/:" \
|
|
--transform "s:$repodir/config/:hyperion/config/:" \
|
|
--transform "s:$repodir/bin/hyperion.init.sh:hyperion/init.d/hyperion.init.sh:" \
|
|
--transform "s://:/:g" \
|
|
"$builddir/bin/hyperiond" \
|
|
"$builddir/bin/hyperion-remote" \
|
|
"$builddir/bin/hyperion-v4l2" \
|
|
"$builddir/bin/gpio2spi" \
|
|
"$builddir/bin/dispmanx2png" \
|
|
"$repodir/effects/"* \
|
|
"$repodir/bin/hyperion.init.sh" \
|
|
"$repodir/config/hyperion.config.json"
|