-
Notifications
You must be signed in to change notification settings - Fork 8
/
configure.ac
46 lines (34 loc) · 939 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
41
42
43
44
45
46
dnl Process this file with autoconf to produce a configure script.
AC_INIT(obmin, 26)
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([1.10 dist-xz no-dist-gzip foreign tar-ustar])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
LT_INIT
GLIB_GSETTINGS
GETTEXT_PACKAGE=gnome-shell-extensions-obmin
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
[The prefix for our gettext translation domains.])
IT_PROG_INTLTOOL()
AC_PATH_PROG([DESKTOP_FILE_VALIDATE], [desktop-file-validate], [/bin/true])
dnl Packaging version
echo "${VERSION}" > packaging/VERSION
AC_OUTPUT([
Makefile
common/Makefile
plugins/Makefile
man/Makefile
data/Makefile
data/icons/Makefile
data/www/Makefile
data/www/themes/Makefile
data/themes/Makefile
schemas/Makefile
po/Makefile.in
metadata.json
])
chmod 600 metadata.json
echo "
${PACKAGE} ${VERSION}
=========
"