Lines Matching +full:- +full:- +full:repo
2 set -e
5 # http://repo.or.cz/isl.git
7 SCRIPTPATH=`realpath --no-symlinks $(dirname $0)`
9 GITDIR=`mktemp -d --tmpdir isl-XXX`
12 git clone --recursive http://repo.or.cz/isl.git $GITDIR
13 if [ -n "$1" ]; then
14 (cd $GITDIR && git checkout --detach $1)
15 (cd $GITDIR && git submodule update --recursive)
19 # - Remove the autotools build system to avoid including GPL source into
21 # - Create files that the autotools would have created
22 # - Save the custom isl C++ binding
23 # - Strip git source versioning
24 (cd $GITDIR && rm -rf m4 autogen.sh configure.ac)
25 (cd $GITDIR && find -name "Makefile.am" -execdir rm -f '{}' \;)
27 cp $ISL_SOURCE_DIR/include/isl/isl-noexceptions.h $GITDIR/include/isl/isl-noexceptions.h
28 rm -rf $GITDIR/.git
29 rm -rf $GITDIR/imath/.git
34 rm -rf $ISL_SOURCE_DIR
35 mv -T $GITDIR $ISL_SOURCE_DIR
38 rm -rf $TMPDIR