diff --git a/make-libhover-tarball.sh b/make-libhover-tarball.sh new file mode 100755 index 0000000..ab51806 --- /dev/null +++ b/make-libhover-tarball.sh @@ -0,0 +1,11 @@ +#!/bin/sh +rel=$1 +tag=`echo $rel | sed -e 's/\./_/g'` +echo $tag +mkdir -p temp && cd temp +rm -rf libhover +svn export svn://dev.eclipse.org/svnroot/technology/org.eclipse.linuxtools/libhover/tags/$rel libhover +cd libhover +pwd +tar -czvf eclipse-cdt-fetched-src-libhover-$tag.tar.gz org.eclipse.linuxtools.cdt.libhover* +