Autoconf bumped to 2.65 Automake bumped to 1.15

This commit is contained in:
Duilio Protti 2016-06-27 11:18:13 -03:00
parent 97fc3b1468
commit 7c1a45fcdd
3 changed files with 21 additions and 8 deletions

View File

@ -15,15 +15,23 @@ Requirements
- Glib >= 2.8
- Gtk+ >= 2.8
*** Install deps in Ubuntu ***
** Install deps in Ubuntu **
sudo apt -y install audacious-dev libaudclient-dev libsdl1.2-dev libglib2.0-dev libgtk2.0-dev
Install
Install from tarball
-------
- **[Download](https://github.com/dprotti/infinity-plugin/releases/latest/)**
- ./configure --prefix=/usr (or whatever your prefix is)
- ./configure
- make
- sudo make install
Install from repo
-------
- git clone https://github.com/dprotti/infinity-plugin
- ./autogen.sh --prefix=/usr (or whatever your prefix is)
- make
- sudo make install

View File

@ -21,8 +21,8 @@ PKG_NAME=${PKG_NAME:-Package}
srcdir=${srcdir:-.}
# default version requirements ...
REQUIRED_AUTOCONF_VERSION=${REQUIRED_AUTOCONF_VERSION:-2.61}
REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.9}
REQUIRED_AUTOCONF_VERSION=${REQUIRED_AUTOCONF_VERSION:-2.65}
REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.15}
REQUIRED_LIBTOOL_VERSION=${REQUIRED_LIBTOOL_VERSION:-1.4.3}
REQUIRED_PKG_CONFIG_VERSION=${REQUIRED_PKG_CONFIG_VERSION:-0.14.0}

View File

@ -1,10 +1,15 @@
## Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([Infinity plugin],[0.9.0alpha1],[dprotti@users.sourceforge.net],[infinity-plugin-4-audacious])
AC_PREREQ(2.65)
AC_INIT([Infinity plugin],[0.9.0alpha],[https://github.com/dprotti/infinity-plugin/issues],[infinity-plugin-4-audacious],[https://github.com/dprotti/infinity-plugin])
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([1.9.0 dist-bzip2])
AM_INIT_AUTOMAKE([1.15 -Wno-portability no-dist-gzip dist-xz tar-ustar])
# Support silent build rules. Disable by either passing --disable-silent-rules
# to configure or passing V=1 to make
AM_SILENT_RULES([yes])
AC_CONFIG_HEADER(config.h)
AC_CONFIG_MACRO_DIR([m4])