File: make-tmp-copy

package info (click to toggle)
puredata 0.55.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 20,508 kB
  • sloc: ansic: 118,824; tcl: 10,221; cpp: 9,327; makefile: 1,632; sh: 1,476; 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