File: make-tmp-copy

package info (click to toggle)
puredata 0.56.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,256 kB
  • sloc: ansic: 121,193; tcl: 10,724; cpp: 9,327; makefile: 1,645; sh: 1,551; python: 152; xml: 98; awk: 13
file content (19 lines) | stat: -rwxr-xr-x 389 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# copy pd source to /tmp/pd or /tmp/$1 in preparation for releasing it or
# for a test compile.

if test x$1 == x
then
    TARGET=pd
else
    TARGET=$1
fi

cd ..
TMPPD=/tmp/$TARGET
echo TEMP $TMPPD
rm -rf $TMPPD
mkdir $TMPPD
cp -pR README.txt LICENSE.txt INSTALL.txt Makefile.am autogen.sh configure.ac \
    src tcl doc extra man  portaudio portmidi asio po m4 pd.pc.in $TMPPD