]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/make-tar.sh
ncurses 5.8 - patch 20110307
[ncurses.git] / test / make-tar.sh
index fc0d58443a4d2e9015ce7c92991990493b0b0364..f468e2321bf14395ed419368bcc5ef0c14a0a715 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: make-tar.sh,v 1.1 2010/02/20 23:42:40 tom Exp $
+# $Id: make-tar.sh,v 1.4 2010/11/06 18:31:46 tom Exp $
 ##############################################################################
 # Copyright (c) 2010 Free Software Foundation, Inc.                          #
 #                                                                            #
 # scripts.  The reason for doing that is to simplify distributing the test
 # programs as a separate package.
 
-ROOTNAME=ncurses-test
-
 TARGET=`pwd`
 
-: ${TMPDIR=/tmp}
+: ${ROOTNAME:=ncurses-test}
+: ${DESTDIR:=$TARGET}
+: ${TMPDIR:=/tmp}
 
 # This can be run from either the test subdirectory, or from the top-level
 # source directory.  We will put the tar file in the original directory.
@@ -58,7 +58,7 @@ cp -p -r * $BUILD/$ROOTNAME/ || exit
 # Add the config.* utility scripts from the top-level directory.
 for i in . ..
 do
-       for j in config.guess config.sub
+       for j in config.guess config.sub install-sh tar-copy.sh
        do
                test -f $i/$j && cp -p $i/$j $BUILD/$ROOTNAME/
        done
@@ -76,8 +76,8 @@ find . -name "*.gz" -exec rm -rf {} \;
 # Make the files writable...
 chmod -R u+w .
 
-tar cf - $ROOTNAME | gzip >$TARGET/$ROOTNAME.tar.gz
-cd $TARGET
+tar cf - $ROOTNAME | gzip >$DESTDIR/$ROOTNAME.tar.gz
+cd $DESTDIR
 
 pwd
 ls -l $ROOTNAME.tar.gz