source: projects/vine-rpm-helper/trunk/configure.ac @ 8874

Revision 8874, 832 bytes checked in by yasumichi, 10 years ago (diff)

add --without-prefix option

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-rpm-helper], [0.6.6], [http://bts.vinelinux.org/])
6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7AM_MAINTAINER_MODE
8AM_GNU_GETTEXT([external])
9
10# Checks for programs.
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}`
25PKGDATADIR=`eval echo ${DATADIR}/vine-rpm-helper`
26AC_SUBST(PKGDATADIR)
27
28AC_CONFIG_FILES([ po/Makefile.in
29        plugins/Makefile
30        data/Makefile
31        man/Makefile
32        man/ja/Makefile
33        Makefile
34        mkrpmspec
35        mkrpmfiles
36])
37AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.