Blame tools/release

Packit 7179fe
#!/bin/sh
Packit 7179fe
Packit 7179fe
# Copyright (C) 2012, Aravinda VK <hallimanearavind@gmail.com>
Packit 7179fe
#                          http://aravindavk.in
Packit 7179fe
Packit 7179fe
# This program is free software: you can redistribute it and/or modify
Packit 7179fe
# it under the terms of the GNU General Public License as published by
Packit 7179fe
# the Free Software Foundation, either version 3 of the License, or
Packit 7179fe
# (at your option) any later version.
Packit 7179fe
Packit 7179fe
# This program is distributed in the hope that it will be useful,
Packit 7179fe
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 7179fe
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Packit 7179fe
# GNU General Public License for more details.
Packit 7179fe
Packit 7179fe
# You should have received a copy of the GNU General Public License
Packit 7179fe
# along with this program. If not, see <http://www.gnu.org/licenses/>.
Packit 7179fe
Packit 7179fe
if [ $# -ne 1 ]
Packit 7179fe
then
Packit 7179fe
  echo "Usage: $0 <version>"
Packit 7179fe
  exit $E_BADARGS
Packit 7179fe
fi
Packit 7179fe
Packit 7179fe
rm -rf /tmp/gubbi-kannada-ttf-$1
Packit 7179fe
mkdir /tmp/gubbi-kannada-ttf-$1
Packit 7179fe
cp ../ChangeLog ../COPYING ../Gubbi.ttf ../README /tmp/gubbi-kannada-ttf-$1/
Packit 7179fe
Packit 7179fe
rm -rf /tmp/gubbi-kannada-$1
Packit 7179fe
mkdir /tmp/gubbi-kannada-$1
Packit 7179fe
cp ../ChangeLog ../COPYING ../Gubbi.sfd ../generate.pe ../Makefile ../README /tmp/gubbi-kannada-$1/
Packit 7179fe
Packit 7179fe
cd /tmp/
Packit 7179fe
tar -cvzf gubbi-kannada-ttf-$1.tar.gz gubbi-kannada-ttf-$1/
Packit 7179fe
tar -cvzf gubbi-kannada-$1.tar.gz gubbi-kannada-$1/
Packit 7179fe
rm -rf gubbi-kannada-ttf-$1
Packit 7179fe
rm -rf gubbi-kannada-$1