source: projects/vine-manual-build/trunk/configure.ac @ 1165

Revision 1165, 839 bytes checked in by yasumichi, 14 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-build, 0.9.0, http://bts.vinelinux.org/)
6AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar])
7AM_MAINTAINER_MODE
8
9# Checks for programs.
10AC_PATH_PROG(XSLTPROC,xsltproc)
11AS_IF(test -z $XSLTPROC, AC_MSG_ERROR([xsltproc was not found.]))
12
13# Checks for libraries.
14
15# Checks for header files.
16
17# Checks for typedefs, structures, and compiler characteristics.
18
19# Checks for library functions.
20
21if test "x${prefix}" = "xNONE"; then
22        prefix=${ac_default_prefix}
23fi
24DATADIR=`eval echo ${datadir}`
25XSLDIR=`eval echo ${DATADIR}`/sgml/docbook/vine-style-xsl
26AC_SUBST(XSLDIR)
27
28AC_CONFIG_FILES([
29           Makefile
30           vine-manual-build
31           vine-manual-build-vl.spec
32           ])
33
34AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.