source: projects/vine-manual-base/trunk/configure.ac @ 2703

Revision 2703, 1.2 KB checked in by yasumichi, 13 years ago (diff)

SPECファイルの雛形をとりあえず追加

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-manual-base], [0.1], [http://vinelinux.org/bts.html])
6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7
8# Checks for programs.
9AC_PATH_PROG(MKTEMP, mktemp)
10AS_IF(test -z $MKTEMP, AC_MSG_ERROR([Cannot find mktemp.]))
11
12# Checks for libraries.
13
14# Checks for header files.
15
16# Checks for typedefs, structures, and compiler characteristics.
17
18# Checks for library functions.
19
20# Define variables
21if test "x${prefix}" = "xNONE"; then
22        prefix=${ac_default_prefix}
23fi
24DATADIR=`eval echo ${datadir}`
25
26CVSDATA=`eval echo ${DATADIR}/vine-manual-base`/doc-list.csv
27AC_SUBST(CVSDATA)
28
29TEMPLATE=`eval echo ${DATADIR}/vine-manual-base`/index.html
30AC_SUBST(TEMPLATE)
31
32INDEX=`eval echo ${DATADIR}/doc/Vine-manual/index.html`
33AC_SUBST(INDEX)
34
35AC_CONFIG_FILES([Makefile
36                 vine-manual-base.spec
37                 bin/Makefile
38                 bin/vine-manual-index-update
39                 bin/vine-manual-regist
40                 css/Makefile
41                 data/Makefile
42                 data/index.html
43                 doc/Makefile
44                 doc/index.html
45                 images/Makefile])
46
47AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.