strawberry-audio-player-win.../dist/scripts/maketarball.sh.in

40 lines
1.1 KiB
Bash
Raw Normal View History

2018-02-27 18:06:05 +01:00
#!/bin/bash
name=strawberry
version="@STRAWBERRY_VERSION_PACKAGE@"
2018-07-01 01:29:52 +02:00
gitrev="@INCLUDE_GIT_REVISION@"
2018-07-03 17:51:52 +02:00
root=$(cd "${0%/*}/../.." && echo $PWD/${0##*/})
2018-02-27 18:06:05 +01:00
root=`dirname "$root"`
rootnoslash=`echo $root | sed "s/^\///"`
2018-07-01 01:29:52 +02:00
if ! [ "$gitrev" = "ON" ]; then
exclude_vcs="--exclude-vcs"
fi
2018-02-27 18:06:05 +01:00
echo "Creating $name-$version.tar.xz..."
2018-04-01 19:41:23 +02:00
rm -f "$name-$version.tar.xz"
2018-02-27 18:06:05 +01:00
tar -cJf $name-$version.tar.xz \
2018-07-01 01:29:52 +02:00
--transform "s,^$rootnoslash,$name-$version," $exclude_vcs \
2018-09-18 00:45:07 +02:00
--exclude="*.tar" \
--exclude="*.tar.*" \
--exclude="*.bz" \
--exclude="*.bz2" \
--exclude="*.xz" \
--exclude=".directory" \
--exclude="*.spec" \
--exclude="*.nsi" \
2019-04-02 18:46:04 +02:00
--exclude="$root/Dockerfile" \
--exclude="$root/.travis.yml" \
2018-09-18 00:45:07 +02:00
--exclude="$root/CMakeLists.txt.user" \
--exclude="$root/build" \
2019-04-02 18:46:04 +02:00
--exclude="$root/zanata.xml" \
--exclude="$root/.zanata-cache" \
2019-02-04 23:30:08 +01:00
--exclude="$root/scripts/maketarball.sh" \
2018-10-16 21:29:00 +02:00
--exclude="$root/dist/debian/changelog" \
2018-12-13 23:31:13 +01:00
--exclude="$root/dist/pacman/PKGBUILD" \
2019-02-04 23:30:08 +01:00
--exclude="$root/dist/macos/create-dmg.sh" \
--exclude="$root/dist/macos/Info.plist" \
--exclude="$root/dist/windows/windres.rc" \
2018-02-27 18:06:05 +01:00
"$root"