Moving looking to be primarily a gameobj action.
[mudsync.git] / mudsync / package-config.scm.in
1 ;;; Mudsync --- Live hackable MUD
2 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
3 ;;;
4 ;;; This file is part of Mudsync.
5 ;;;
6 ;;; Mudsync is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or
9 ;;; (at your option) any later version.
10 ;;;
11 ;;; Mudsync is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ;;; General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with Mudsync.  If not, see <http://www.gnu.org/licenses/>.
18
19 (define-module (mudsync package-config)
20   #:export (%datadir
21             scope-datadir web-static-filepath
22
23             %mudsync-package-name %mudsync-version))
24
25 (define %datadir
26   (or (getenv "MUDSYNC_DATADIR")
27       "@package_datadir@/@PACKAGE_NAME@"))
28
29 (define (scope-datadir filename)
30   (string-append %datadir filename))
31
32 (define (web-static-filepath filename)
33   (scope-datadir (string-append "/web-static" filename)))
34
35
36 (define %mudsync-package-name
37   "@PACKAGE_NAME@")
38
39 (define %mudsync-version
40   "@PACKAGE_VERSION@")
41
42 ;; (define %mudsync-bug-report-address
43 ;;   "@PACKAGE_BUGREPORt")
44
45 ;; (define %mudsync-home-page-url
46 ;;   "@PACKAGE_URL@")
47