forked from solus-project/budgie-desktop-examples
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
45 lines (37 loc) · 1.33 KB
/
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
AC_INIT([budgie-cpupower-applet], 1, [raffaele.fioratto@gmail.com], [budgie-cpupower-applet], [https://github.com//budgie-desktop-examples])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects])
AC_PROG_CC
AC_PROG_CC_STDC
LT_PREREQ(2.2)
AC_CONFIG_HEADERS([config.h])
AC_PREFIX_DEFAULT(/usr/local)
AM_SILENT_RULES([yes])
LT_INIT([disable-static])
AC_CONFIG_MACRO_DIR([m4])
m4_define([budgie_required_version], [1])
# Note budgie-1.0 depends on peas, gtk, etc. Sorta your package managers
# business to make sure those deps are satisfied.
# Also note this is just for the C and Vala subprojects!
PKG_CHECK_MODULES(BUDGIE_PLUGIN,
budgie-1.0 >= budgie_required_version
)
GLIB_GSETTINGS
AC_CONFIG_FILES([Makefile
cpufreqctl/Makefile
applet/Makefile
schemas/Makefile])
AC_OUTPUT
AC_MSG_RESULT([
budgie-desktop-examples $VERSION
========
prefix: ${prefix}
libdir: ${libdir}
sysconfdir: ${sysconfdir}
exec_prefix: ${exec_prefix}
bindir: ${bindir}
datarootdir: ${datarootdir}
compiler: ${CC}
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
])