root/WizardsToolkit/trunk/version.sh @ 259

Revision 259, 1.9 KB (checked in by cristy, 8 weeks ago)
RevLine 
[1]1#
2# Package name and versioning information for Magick
3#
4# This file is sourced by a Bourne shell (/bin/sh) script so it must
5# observe Bourne shell syntax.
6#
7# Package base name
8PACKAGE_NAME='WizardsToolkit'
9#
10# Package version.  This is is the numeric version suffix applied to
11# PACKAGE_NAME (e.g. "1.0.0").
[259]12PACKAGE_VERSION='1.0.7'
13PACKAGE_LIB_VERSION="0x107"
14PACKAGE_RELEASE="0"
15PACKAGE_LIB_VERSION_NUMBER="1,0,7,${PACKAGE_RELEASE}"
[1]16PACKAGE_RELEASE_DATE=`date +%F`
17PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
18
19#
20# Date of last ChangeLog update
21#
22PACKAGE_CHANGE_DATE=`awk '/^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]/ { print substr($1,1,4) substr($1,6,2) substr($1,9,2); exit; }' ${srcdir}/ChangeLog`
23
24#
25# Package version addendum.  This is an arbitrary suffix (if any)
26# appended to the package version. (e.g. "beta1")
27PACKAGE_LIB_SUBVERSION="-${PACKAGE_RELEASE}"
28
29#
30# Libtool library revision control info
31# See the libtool documentation under the heading "Libtool's versioning
32# system" in order to understand the meaning of these fields
33#
34# Here are a set of rules to help you update your library version
35# information:
36#
37#  1. Start with version information of `0:0:0' for each libtool library.
38#  2. Update the version information only immediately before a public
39#     release of your software. More frequent updates are unnecessary, and
40#     only guarantee that the current interface number gets larger faster.
41#  3. If the library source code has changed at all since the last update,
42#     then increment revision (`c:r:a' becomes `c:r+1:a').
43#  4. If any interfaces have been added, removed, or changed since the last
44#     update, increment current, and set revision to 0.
45#  5. If any interfaces have been added since the last public release, then
46#     increment age.
47#  6. If any interfaces have been removed since the last public release,
48#     then set age to 0.
49WIZARD_LIBRARY_CURRENT=1
50WIZARD_LIBRARY_REVISION=1
51WIZARD_LIBRARY_AGE=0
Note: See TracBrowser for help on using the browser.