blob: 6c653e716148bf9336e622c47a6a4b842070b83a [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001#
2# Package name and versioning information for ImageMagick.
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='ImageMagick'
9
10#
11# Package version. This is is the numeric version suffix applied to
12# PACKAGE_NAME (e.g. "1.0.0").
cristyd77fe152011-07-01 23:14:16 +000013PACKAGE_VERSION='7.0.0'
cristy878c2f12011-08-19 00:25:19 +000014PACKAGE_PERL_VERSION='7.00'
cristyd77fe152011-07-01 23:14:16 +000015PACKAGE_LIB_VERSION="0x700"
cristy87a7f072011-07-01 00:08:52 +000016PACKAGE_RELEASE="0"
cristyd77fe152011-07-01 23:14:16 +000017PACKAGE_LIB_VERSION_NUMBER="7,0,0,${PACKAGE_RELEASE}"
cristy3ed852e2009-09-05 21:47:34 +000018PACKAGE_RELEASE_DATE=`date +%F`
19PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
20
21#
22# Date of last ChangeLog update
23#
24PACKAGE_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`
25
26#
27# Package version addendum. This is an arbitrary suffix (if any) appended
28# to the package version. (e.g. "beta1")
cristy15a88782010-01-31 23:24:49 +000029PACKAGE_VERSION_ADDENDUM="-${PACKAGE_RELEASE}"
cristy3ed852e2009-09-05 21:47:34 +000030
31#
cristycaf5c812011-09-11 01:06:33 +000032# Versions are denoted using a standard triplet of integers:
33# MAJOR.MINOR.PATCH. The basic intent is that MAJOR versions are
34# incompatible, large-scale upgrades of the API. MINOR versions retain
35# source and binary compatibility with older minor versions, and changes
36# in the PATCH level are perfectly compatible, forwards and backwards.
37# See http://apr.apache.org/versioning.html.
38MAGICK_LIBRARY_CURRENT=7
cristyd77fe152011-07-01 23:14:16 +000039MAGICK_LIBRARY_REVISION=0
cristy3ed852e2009-09-05 21:47:34 +000040MAGICK_LIBRARY_AGE=0