1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

strim out some references to minimal and complete tarballs as we only have one sort of tarball now

This commit is contained in:
RichardAsh1981@gmail.com 2013-10-24 15:47:44 +00:00
parent a2a7a7d941
commit b026a84218

View File

@ -3,7 +3,7 @@
# Copyright 2003, 2004, 2005 Dominic Mazzoni and Matt Brubeck # Copyright 2003, 2004, 2005 Dominic Mazzoni and Matt Brubeck
# Distributed under the GNU General Public License 2.0. # Distributed under the GNU General Public License 2.0.
# See the file LICENSE.txt for details. # See the file LICENSE.txt for details.
# Re-written in Bash by Richard Ash 2006 - 2012 # Re-written in Bash by Richard Ash 2006 - 2013
function myrmrvf { function myrmrvf {
# a replacement for rm -rvf that has it's output controlled # a replacement for rm -rvf that has it's output controlled
@ -362,8 +362,8 @@ cp -r . "${tardir}"
cd "${tardir}" cd "${tardir}"
printf "Done\n" printf "Done\n"
# now clean out the directory of all the things we don't need in either the full # now clean out the directory of all the things we don't need in the
# or the slimmed tarball, prior to building the full source tarball # tarball, prior to building the source tarball
cleanfulltree $mode; cleanfulltree $mode;
# fix line endings issues caused by this being on *nix and CVS messing with # fix line endings issues caused by this being on *nix and CVS messing with
@ -378,13 +378,13 @@ slimtree $mode;
# Fix up windows builds for the slimmed state of the tarball # Fix up windows builds for the slimmed state of the tarball
fixwinforslim ${mode} fixwinforslim ${mode}
# Tar up that lot as the slim source tarball # Tar up that lot as the source tarball
cd "${topdir}" cd "${topdir}"
printf "Creating minimal source tarball .... " printf "Creating source tarball .... "
tar cf "audacity-minsrc-${version}.tar" "${tarname}" tar cf "audacity-minsrc-${version}.tar" "${tarname}"
printf "Done\n" printf "Done\n"
printf "Compressing minimal source tarball .... " printf "Compressing source tarball .... "
xz "audacity-minsrc-${version}.tar" xz "audacity-minsrc-${version}.tar"
cd "${tardir}" cd "${tardir}"