blob: 178aa9c324710953783c5047bbf7a7c4d93b6b47 [file] [log] [blame]
#*******************************************************************************
# Copyright (c) 2009 Tasktop Technologies and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Tasktop Technologies - initial API and implementation
#*******************************************************************************
if [ $# -lt 1 ]
then
echo "usage: extract-plugins.sh files"
exit 1
fi
echo == feature.xml ==
echo
for i in `grep -h "id=\"org.eclipse.mylyn" $* | grep -v feature`; do
i=`echo $i | sed -e 's/.*id=//' -e 's/\"//g'`
echo "<plugin id=\"$i.source\" version=\"0.0.0\"/>"
done
echo
echo == build.properties ==
echo
for i in `grep -h "id=\"org.eclipse.mylyn" $* | grep -v feature`; do
i=`echo $i | sed -e 's/.*id=//' -e 's/\"//g'`
echo "generate.plugin@$i.source=$i"
done