root/Multipole/trunk/version.sh @ 1

Revision 1, 1.8 KB (checked in by cristy, 3 months 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='N-body'
9#
10# Package version.  This is is the numeric version suffix applied to
11# PACKAGE_NAME (e.g. "1.0.0").
12PACKAGE_VERSION='1.0.0'
13PACKAGE_LIB_VERSION="0x100"
14PACKAGE_LIB_VERSION_NUMBER="1,0,0,0"
15PACKAGE_RELEASE_DATE=`date +%x`
16#
17# Package version addendum.  This is an arbitrary suffix (if any)
18# appended to the package version. (e.g. "beta1")
19# `echo -snapshot-``date '+%g%m%d'`
20CHANGE_DATE=`find ${srcdir}/ChangeLog -printf '%Ty%Tm%Td%\n' 2> /dev/null`
21if test -n "$CHANGE_DATE"
22then
23  PACKAGE_VERSION_ADDENDUM=""
24else
25  PACKAGE_VERSION_ADDENDUM=""
26fi
27#
28# Libtool library revision control info
29# See the libtool documentation under the heading "Libtool's versioning
30# system" in order to understand the meaning of these fields
31#
32# Here are a set of rules to help you update your library version
33# information:
34#
35#  1. Start with version information of `0:0:0' for each libtool library.
36#  2. Update the version information only immediately before a public
37#     release of your software. More frequent updates are unnecessary, and
38#     only guarantee that the current interface number gets larger faster.
39#  3. If the library source code has changed at all since the last update,
40#     then increment revision (`c:r:a' becomes `c:r+1:a').
41#  4. If any interfaces have been added, removed, or changed since the last
42#     update, increment current, and set revision to 0.
43#  5. If any interfaces have been added since the last public release, then
44#     increment age.
45#  6. If any interfaces have been removed since the last public release,
46#     then set age to 0.
47LIBRARY_CURRENT=1
48LIBRARY_REVISION=0
49LIBRARY_AGE=0
Note: See TracBrowser for help on using the browser.