forked from depressed-pho/mcpe-neutralism-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
41 lines (32 loc) · 1.15 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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([MCPE Neutralism Addon],
[0.1],
[https://github.com/depressed-pho/mcpe-neutralism-addon/issues],
[],
[https://github.com/depressed-pho/mcpe-neutralism-addon])
AM_INIT_AUTOMAKE([1.9])
AC_CONFIG_SRCDIR([src/pack_manifest.yaml.in])
AM_MAINTAINER_MODE
AM_SILENT_RULES([yes])
# Checks for programs.
AC_ARG_VAR([YAML2JSON], [The yaml2json command @<:@autodetected@:>@])
AC_CHECK_PROGS([YAML2JSON], [yaml2json])
AS_IF([test "x$YAML2JSON" = x],
[AC_MSG_ERROR([You need to install the yamljs npm package. Run `npm install -g yamljs'.])])
AC_ARG_VAR([ZIP], [The Info-Zip zip command @<:@autodetected@:>@])
AC_CHECK_PROGS([ZIP], [zip])
AS_IF([test "x$ZIP" = x],
[AC_MSG_ERROR([You need to install the Info-Zip zip command.])])
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([
Makefile
img/Makefile
src/Makefile
src/pack_manifest.yaml
])
AC_OUTPUT