Initial Commit
[packages] / xemacs-packages / easypg / epg-package-info.el.in
1 ;;; epg-package-info.el --- package information about EasyPG
2 ;; Copyright (C) 2007 Daiki Ueno
3
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG
6
7 ;; This file is part of EasyPG.
8
9 ;; This program is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; This program is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 ;;; Code:
25
26 (defconst epg-package-name "@PACKAGE@"
27   "Name of this package.")
28
29 (defconst epg-version-number "@VERSION@"
30   "Version number of this package.")
31
32 (defconst epg-bug-report-address "@PACKAGE_BUGREPORT@"
33   "Report bugs to this address.")
34
35 (provide 'epg-package-info)
36
37 ;;; epg-package-info.el ends here