2011-10-04 18:01:13 +00:00
|
|
|
#!/bin/sh
|
2010-06-21 23:26:35 +00:00
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# --------------------------------------------------------------------------- #
|
2012-10-21 13:16:22 +00:00
|
|
|
# Copyright (c) 2008-2012 Raoul Snyman #
|
|
|
|
# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan #
|
2012-06-22 14:14:53 +00:00
|
|
|
# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, #
|
2012-10-21 13:16:22 +00:00
|
|
|
# Meinert Jordan, Armin Köhler, Eric Ludin, Edwin Lunando, Brian T. Meyer, #
|
|
|
|
# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, #
|
|
|
|
# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
|
|
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, #
|
2012-11-07 21:37:01 +00:00
|
|
|
# Frode Woldsund, Martin Zibricky #
|
2010-06-21 23:26:35 +00:00
|
|
|
# --------------------------------------------------------------------------- #
|
|
|
|
# This program is free software; you can redistribute it and/or modify it #
|
|
|
|
# under the terms of the GNU General Public License as published by the Free #
|
|
|
|
# Software Foundation; version 2 of the License. #
|
|
|
|
# #
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT #
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
|
|
|
# more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License along #
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
|
|
|
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# This script automates the generation of resources.py for OpenLP saving a
|
|
|
|
# backup of the old resources, inserting the coding and copyright header and
|
|
|
|
# conforming it to the project coding standards.
|
|
|
|
#
|
|
|
|
# To make use of the script:
|
|
|
|
# 1 - Add the new image files in resources/images/
|
|
|
|
# 2 - Modify resources/images/openlp-2.qrc as appropriate
|
|
|
|
# 3 - run sh scripts/generate_resources.sh
|
|
|
|
#
|
|
|
|
# Once you have confirmed the resources are correctly modified to an updated,
|
|
|
|
# working state you may optionally remove openlp/core/resources.py.old
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
# Backup the existing resources
|
|
|
|
mv openlp/core/resources.py openlp/core/resources.py.old
|
|
|
|
|
|
|
|
# Create the new data from the updated qrc
|
|
|
|
pyrcc4 -o openlp/core/resources.py.new resources/images/openlp-2.qrc
|
|
|
|
|
|
|
|
# Remove patch breaking lines
|
|
|
|
cat openlp/core/resources.py.new | sed '/# Created: /d;/# by: /d' \
|
|
|
|
> openlp/core/resources.py
|
|
|
|
|
|
|
|
# Patch resources.py to OpenLP coding style
|
2011-10-04 16:03:07 +00:00
|
|
|
patch --posix -s openlp/core/resources.py scripts/resources.patch
|
2010-06-21 23:26:35 +00:00
|
|
|
|
|
|
|
# Remove temporary file
|
|
|
|
rm openlp/core/resources.py.new
|
|
|
|
|