Switch to unified view

a b/src/desktop/unity-lens-recoll/configure.ac
1
# When releasing also remember to update the soname as instructed below
2
AC_INIT(unity-lens-recoll, 0.1.1, https://www.recoll.org)
3
AM_INIT_AUTOMAKE([subdir-objects])
4
AM_PATH_PYTHON
5
6
AC_PREREQ(2.59)
7
8
# Variables to escape in .in files
9
AS_AC_EXPAND(PREFIX, $prefix)
10
AC_SUBST(PREFIX)
11
12
AS_AC_EXPAND(DATADIR, $datarootdir)
13
AC_SUBST(DATADIR)
14
15
AS_AC_EXPAND(LIBEXECDIR, $libexecdir)
16
AC_SUBST(LIBEXECDIR)
17
18
AC_OUTPUT([
19
bin/unity-recoll-daemon
20
data/recoll.lens
21
data/unity-lens-recoll.service
22
Makefile
23
])
24
25
AC_MSG_NOTICE([
26
27
  unity-lens-recoll
28
  --------------------
29
30
  Prefix           : ${prefix}
31
32
])
33