e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
439 B
Makefile
22 lines
439 B
Makefile
#############################################################
|
|
#
|
|
# aumix
|
|
#
|
|
#############################################################
|
|
|
|
AUMIX_VERSION=2.8
|
|
AUMIX_SOURCE=aumix-$(AUMIX_VERSION).tar.bz2
|
|
AUMIX_SITE=http://jpj.net/~trevor/aumix/releases
|
|
AUMIX_AUTORECONF=YES
|
|
|
|
AUMIX_CONF_OPT = \
|
|
--without-gtk \
|
|
--without-gtk1 \
|
|
--without-alsa \
|
|
--without-gpm \
|
|
--without-sysmouse
|
|
|
|
AUMIX_DEPENDENCIES = ncurses
|
|
|
|
$(eval $(autotools-package))
|