Removed Audclient dependency
This commit is contained in:
parent
0e9dfbff48
commit
8d8d9f3ff1
15
README.md
15
README.md
|
@ -6,23 +6,24 @@ Visualization plugin for [Audacious](http://audacious-media-player.org/) music p
|
|||
It generates beautiful light effects. Supports full-screen mode, mouse resizing and preferences
|
||||
saving.
|
||||
|
||||
**[Go to Downloads](https://github.com/dprotti/infinity-plugin/releases/latest/)**
|
||||
|
||||
![Screenshot of Infinity](https://a.fsdn.com/con/app/proj/infinity-plugin/screenshots/Infinity.png)
|
||||
|
||||
Requirements
|
||||
------------
|
||||
|
||||
Audacious >= 3.5, Audclient >= 3.5, 1.0.6 <= SDL < 2, Glib >= 2.8, Gtk+ >= 2.8
|
||||
Audacious >= 3.5, 1.0.6 <= SDL < 2, Glib >= 2.8, Gtk+ >= 2.8
|
||||
|
||||
**Install deps in Ubuntu**
|
||||
|
||||
```
|
||||
sudo apt -y install audacious-dev libaudclient-dev libsdl1.2-dev libglib2.0-dev libgtk2.0-dev
|
||||
```
|
||||
`sudo apt -y install audacious-dev libaudclient-dev libsdl1.2-dev libglib2.0-dev libgtk2.0-dev`
|
||||
|
||||
Install from tarball
|
||||
-------
|
||||
|
||||
- **[Download](https://github.com/dprotti/infinity-plugin/releases/latest/)**
|
||||
- [Download](https://github.com/dprotti/infinity-plugin/releases/latest/)
|
||||
- tar xf infinity-plugin-4-audacious-{version}.tar.xz
|
||||
- ./configure
|
||||
- make
|
||||
- sudo make install
|
||||
|
@ -31,7 +32,7 @@ Install from repo
|
|||
-------
|
||||
|
||||
- git clone https://github.com/dprotti/infinity-plugin
|
||||
- ./autogen.sh --prefix=/usr (or whatever your prefix is)
|
||||
- ./autogen.sh
|
||||
- make
|
||||
- sudo make install
|
||||
|
||||
|
@ -47,7 +48,7 @@ Enter / leave full-screen by pressing `Tab`.
|
|||
Playing Around
|
||||
--------------
|
||||
|
||||
See [how to add new effects or how to control the plugin with the keyboard](minidocs/controlkeys.md).
|
||||
See [how to add new effects or how to control the plugin with the keyboard](https://github.com/dprotti/infinity-plugin/blob/master/minidocs/controlkeys.md).
|
||||
|
||||
Known Bugs
|
||||
----------
|
||||
|
|
|
@ -46,10 +46,6 @@ PKG_CHECK_MODULES(AUDACIOUS, audacious >= 3.5,,)
|
|||
AC_SUBST(AUDACIOUS_LIBS)
|
||||
AC_SUBST(AUDACIOUS_CFLAGS)
|
||||
|
||||
PKG_CHECK_MODULES(AUDCLIENT, audclient >= 3.5,,)
|
||||
AC_SUBST(AUDCLIENT_LIBS)
|
||||
AC_SUBST(AUDCLIENT_CFLAGS)
|
||||
|
||||
AC_PATH_PROG(SDL_CONFIG, [sdl-config], [no])
|
||||
if test x$SDL_CONFIG = xno ; then
|
||||
AC_MSG_ERROR([
|
||||
|
|
|
@ -5,7 +5,7 @@ data_DATA = infinite_states
|
|||
|
||||
datadir = $(prefix)/share/audacious
|
||||
|
||||
COMMON_FLAGS = @AUDACIOUS_CFLAGS@ @AUDCLIENT_CFLAGS@ @SDL_CFLAGS@ @GTK_CFLAGS@\
|
||||
COMMON_FLAGS = @AUDACIOUS_CFLAGS@ @SDL_CFLAGS@ @GTK_CFLAGS@\
|
||||
@GLIB_CFLAGS@ $(INF_CFLAGS_EXTRA) -DDATADIR='"$(datadir)"'
|
||||
|
||||
AM_CFLAGS = @CFLAGS@ $(COMMON_FLAGS)
|
||||
|
@ -13,7 +13,7 @@ AM_CXXFLAGS = @CXXFLAGS@ $(COMMON_FLAGS)
|
|||
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir)
|
||||
|
||||
libinfinite_la_LDFLAGS = ${CXX}
|
||||
libinfinite_la_LIBADD = @AUDACIOUS_LIBS@ @AUDCLIENT_LIBS@ @SDL_LIBS@ @GTK_LIBS@ @GLIB_LIBS@
|
||||
libinfinite_la_LIBADD = @AUDACIOUS_LIBS@ @SDL_LIBS@ @GTK_LIBS@ @GLIB_LIBS@
|
||||
libinfinite_la_SOURCES = \
|
||||
main.cc \
|
||||
renderer.cc renderer.h\
|
||||
|
|
Loading…
Reference in New Issue