Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ARToolKitPlus/makedist.sh
blob: be26c17f20c628f7099149e26d719809ec6ff6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

NAME=artoolkitplus-2.1.0

make clean > /dev/null 2> /dev/null
rm -f ../$NAME
ln -s `pwd` ../$NAME
pushd .. > /dev/null
tar cfjh $NAME.tar.bz2 \
--exclude Makefile \
--exclude ".svn" \
--exclude "*.dll" \
--exclude "*.vcproj" \
--exclude "*~" \
--exclude "*.o" \
--exclude "*.so*" \
--exclude .sconf_temp \
--exclude .sconsign \
--exclude build.opts \
--exclude $NAME.tar.bz2 \
$NAME
popd > /dev/null
mv ../$NAME.tar.bz2 .
rm ../$NAME