]> www.fi.muni.cz Git - evince.git/blob - cut-n-paste/toolbar-editor/update-toolbareditor-from-libegg
2007-07-03 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated Macedonian transla...
[evince.git] / cut-n-paste / toolbar-editor / update-toolbareditor-from-libegg
1 #!/bin/sh
2 # Get latest toolbar editor from libegg
3 # Developers using the toolbar editor in their projects can use this script to
4 # fetch the latest toolbar editor from libegg
5 echo "Obtaining latest version of toolbar editor from libegg"
6
7 FILES="egg-editable-toolbar.c \
8        egg-toolbars-model.c \
9        egg-toolbar-editor.c \
10        eggtreemultidnd.c \
11        egg-editable-toolbar.h \
12        egg-toolbars-model.h \
13        egg-toolbar-editor.h \
14        eggtreemultidnd.h \
15        eggmarshalers.list" 
16
17 for FILE in $FILES 
18 do
19   svn export http://svn.gnome.org/svn/libegg/trunk/libegg/toolbareditor/$FILE
20 done
21