-
Notifications
You must be signed in to change notification settings - Fork 7
/
configure.ac
40 lines (33 loc) · 942 Bytes
/
configure.ac
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
40
AC_INIT([GNOME News],
[0.0.1],
[https://github.com/ignatenkobrain/gnome-news/issues/new],
[gnome-news],
[https://wiki.gnome.org/Design/Apps/Potential/News])
AX_IS_RELEASE([git-directory])
AM_INIT_AUTOMAKE([check-news dist-xz no-dist-gzip subdir-objects])
AC_CONFIG_MACRO_DIR([m4])
AM_MAINTAINER_MODE([enable])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_PATH_PYTHON([3.4])
# GResources
AC_PATH_PROG([GLIB_COMPILE_RESOURCES], [glib-compile-resources])
# Internationalisation
GETTEXT_PACKAGE=gnome-news
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [gettext package name])
IT_PROG_INTLTOOL([0.50.2])
# GSettings
AX_REQUIRE_DEFINED([GLIB_GSETTINGS])
GLIB_GSETTINGS
# AppData
AX_REQUIRE_DEFINED([APPSTREAM_XML])
APPSTREAM_XML
AC_CONFIG_FILES([
VERSION
Makefile
data/Makefile
data/icons/Makefile
gnomenews/Makefile
po/Makefile.in
])
AC_OUTPUT