File: version.mak

package info (click to toggle)
ghostscript 10.05.1~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 93,508 kB
  • sloc: ansic: 908,895; python: 7,676; cpp: 6,534; cs: 6,457; sh: 6,168; java: 4,028; perl: 2,373; tcl: 1,639; makefile: 529; awk: 66; yacc: 18
file content (27 lines) | stat: -rw-r--r-- 995 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (C) 2001-2025 Artifex Software, Inc.
# All Rights Reserved.
#
#  This software is provided AS-IS with no warranty, either express or
#  implied.
#
#  This software is distributed under license and may not be copied,
#  modified or distributed except as expressly authorized under the terms
#  of the license contained in the file LICENSE in this distribution.
#
#  Refer to licensing information at http://www.artifex.com or contact
#  Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
#  CA 94129, USA, for further information.

#
# Makefile fragment containing the current revision identification.

# Major, minor and patch version numbers.
GS_VERSION_MAJOR=10
GS_VERSION_MINOR=05
GS_VERSION_PATCH=1
# Revision date: year x 10000 + month x 100 + day.
GS_REVISIONDATE=20250429
# Derived values
GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR)$(GS_VERSION_PATCH)
GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR).$(GS_VERSION_PATCH)
GS_REVISION=$(GS_VERSION)