File: configure.ac

package info (click to toggle)
linuxdoc-tools 0.9.86-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,312 kB
  • sloc: ansic: 16,247; perl: 3,769; sh: 1,134; makefile: 813; lex: 566; lisp: 309
file content (39 lines) | stat: -rw-r--r-- 929 bytes parent folder | download
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
28
29
30
31
32
33
34
35
36
37
38
39
dnl
dnl Copyright (C) 1996 Ken MacLeod
dnl See the file COPYING for distribution terms.
dnl
dnl $Id: configure.ac,v 1.3 2001/11/30 23:41:44 sano Exp $
dnl
dnl This is an autoconf script.
dnl To rebuild the `configure' script from this, execute the command
dnl     autoconf
dnl in the directory containing this script.

AC_INIT(EntityMap.pm.in)
VERSION=0.1.0
AC_SUBST(VERSION)
PACKAGE=entity-map
AC_SUBST(PACKAGE)

AC_CONFIG_AUX_DIR(config)
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_PROG_LN_S
AC_ARG_PROGRAM

AC_CHECK_PROG(SED, sed, sed)
AC_PATH_PROGS(PERL5, perl5 perl)

AC_SUBST(docdir)
docdir=\${prefix}/share/doc/entity-map-\${VERSION}
AC_SUBST(perl5libdir)
perl5libdir=\${libdir}/perl5
AC_SUBST(textmoddir)
textmoddir=\${perl5libdir}/Text
AC_SUBST(entitymapdir)
entitymapdir=\${datadir}/entity-map/\${VERSION}
AC_SUBST(localentitymapdir)
localentitymapdir=\${datadir}/entity-map

AC_CONFIG_FILES(Makefile sdata/Makefile)
AC_OUTPUT