From f8e4e480200d24ba699afdb19fbb40348120aa7f Mon Sep 17 00:00:00 2001 From: gsherman Date: Sun, 22 Feb 2004 03:53:10 +0000 Subject: [PATCH] removed shell script git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@886 c8812cc2-4d05-0410-92ff-de0c093fc19c --- plugins/plugin_builder.sh | 46 --------------------------------------- 1 file changed, 46 deletions(-) delete mode 100755 plugins/plugin_builder.sh diff --git a/plugins/plugin_builder.sh b/plugins/plugin_builder.sh deleted file mode 100755 index ceb9d194017..00000000000 --- a/plugins/plugin_builder.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -################################################## -# A script to automate creation of a new plugin -# using the plugin_template -################################################## - - -echo "Useage $0 [NewPluginDir] [PluginName] [\"Plugin description\"] [\"Menu Name\"] [\"Menu Item Name\"]" -echo "New dir : $1" -echo "New plugin name : $2" -echo "New plugin description : $3" -echo "New menu name : $4" -echo "New menu item : $5" -## -## Copy the new plugin from the template dir -## -cp -r plugin_template $1 - -## -## Set the new plugin dir as the working dir -## - -cd ${1} - -echo `pwd` - -## -## Sustitute and plugin specific vars -## -find *.cpp *.h *.am -type f | xargs perl -pi -e 's/\[pluginname]/${2}/g' -find *.cpp *.h *.am -type f | xargs perl -pi -e 's/\[plugindescription]/${3}/g' -find *.cpp *.h *.am -type f | xargs perl -pi -e 's/\[menuname]/${4}/g' -find *.cpp *.h *.am -type f | xargs perl -pi -e 's/\[menuitemname]/${5}/g' - -## -## Add an entry to the qgis/plugins/Makefile.am -## - -## DO ME! - -## -## Add an entry to the qgis/configure.in -## - -## DO ME!