Move all to deprecated folder.
This commit is contained in:
10
deprecated/firmware/buildroot/package/libshout/Config.in
Normal file
10
deprecated/firmware/buildroot/package/libshout/Config.in
Normal file
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_LIBSHOUT
|
||||
bool "libshout"
|
||||
select BR2_PACKAGE_LIBOGG
|
||||
select BR2_PACKAGE_LIBVORBIS
|
||||
help
|
||||
Libshout is a library for communicating with and sending data to an
|
||||
icecast server. It handles the socket connection, the timing of the
|
||||
data, and prevents bad data from getting to the icecast server.
|
||||
|
||||
http://icecast.org/download/
|
||||
@@ -0,0 +1,2 @@
|
||||
# From http://downloads.xiph.org/releases/libshout/SHA256SUMS
|
||||
sha256 cf3c5f6b4a5e3fcfbe09fb7024aa88ad4099a9945f7cb037ec06bcee7a23926e libshout-2.3.1.tar.gz
|
||||
28
deprecated/firmware/buildroot/package/libshout/libshout.mk
Normal file
28
deprecated/firmware/buildroot/package/libshout/libshout.mk
Normal file
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# libshout
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBSHOUT_VERSION = 2.3.1
|
||||
LIBSHOUT_SITE = http://downloads.xiph.org/releases/libshout
|
||||
LIBSHOUT_LICENSE = LGPLv2+
|
||||
LIBSHOUT_LICENSE_FILES = COPYING
|
||||
LIBSHOUT_INSTALL_STAGING = YES
|
||||
LIBSHOUT_DEPENDENCIES = host-pkgconf libogg libvorbis
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBTHEORA),y)
|
||||
LIBSHOUT_CONF_OPTS += --enable-theora
|
||||
LIBSHOUT_DEPENDENCIES += libtheora
|
||||
else
|
||||
LIBSHOUT_CONF_OPTS += --disable-theora
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SPEEX),y)
|
||||
LIBSHOUT_CONF_OPTS += --enable-speex
|
||||
LIBSHOUT_DEPENDENCIES += speex
|
||||
else
|
||||
LIBSHOUT_CONF_OPTS += --disable-speex
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user