1
0
Fork 0
easejs/tools/verset

45 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
#
# Simple version update script
#
# Copyright (C) 2012 Mike Gerwitz
#
# This file is part of ease.js.
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
##
major="$1"
minor="$2"
rev="$3"
suffix="$4"
# pre-formatted suffix
fsuffix=
[ -n "$suffix" ] && fsuffix="-$suffix"
# generate version.js
cat version.js.tpl | sed "
s/@MAJOR@/$major/;
s/@MINOR@/$minor/;
s/@REV@/$rev/;
s/@SUFFIX@/$suffix/;
" > ../lib/version.js
# output version for docs
cat - > ../doc/version.texi <<EOF
@c DO NOT MODIFY; generated by verset (not autoconf)
@set VERSION $major.$minor.$rev$fsuffix
EOF