2003-12-03 23:56:58 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# mpg123
|
|
|
|
#
|
|
|
|
#############################################################
|
2009-12-17 21:45:12 +01:00
|
|
|
MPG123_VERSION = 0.66
|
|
|
|
MPG123_SOURCE = mpg123-$(MPG123_VERSION).tar.bz2
|
|
|
|
MPG123_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mpg123
|
|
|
|
|
2009-12-17 22:08:57 +01:00
|
|
|
MPG123_CPU = $(if $(BR2_SOFT_FLOAT),generic_nofpu,generic)
|
|
|
|
|
|
|
|
ifeq ($(BR2_i386),y)
|
|
|
|
MPG123_CPU = x86
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_powerpc),y)
|
|
|
|
ifneq ($(BR2_powerpc_7400)$(BR2_powerpc_7450)$(BR2_powerpc_970),)
|
|
|
|
MPG123_CPU = altivec
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
MPG123_CONF_OPT = --program-prefix='' --with-cpu=$(MPG123_CPU)
|
2003-12-03 23:56:58 +01:00
|
|
|
|
2007-07-28 19:05:38 +02:00
|
|
|
# Check if ALSA is built, then we should configure after alsa-lib so
|
|
|
|
# ./configure can find alsa-lib.
|
2009-02-05 14:24:01 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
2009-12-17 21:45:12 +01:00
|
|
|
MPG123_CONF_OPT += --with-audio=alsa
|
|
|
|
MPG123_DEPENDENCIES += alsa-lib
|
2007-07-28 19:05:38 +02:00
|
|
|
endif
|
2003-12-03 23:56:58 +01:00
|
|
|
|
2009-12-17 21:45:12 +01:00
|
|
|
$(eval $(call AUTOTARGETS,package/multimedia,mpg123))
|