Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts/update-activity.sh
blob: 624ad45f30e2ef509e147178cffd0eb788b93489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
DEST=/usr/share/activities/TamTam.activity
SRC=.
PYTHON_DIR=" . Jam Edit miniTamTam Util SynthLab Generation Resources "
OTHER_DIRS=" "
FILES="Util/Clooper/aclient.so Resources/crop.csd Resources/univorc.csd "
for DIR in $PYTHON_DIR ; do
    echo cp $SRC/$DIR/*.py $DEST/$DIR
    cp $SRC/$DIR/*.py $DEST/$DIR
done

for DIR in $OTHER_DIRS ; do
    echo cp -R $SRC/$DIR/* $DEST/$DIR
    cp -R $SRC/$DIR/* $DEST/$DIR
done

for F in $FILES ; do
    echo cp $F $DEST/$F
    cp $F $DEST/$F
done