initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_TWOLAME
bool "twolame"
help
TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder
based on tooLAME by Mike Cheng, which in turn is based upon
the ISO dist10 code and portions of LAME.
http://www.twolame.org/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 cc35424f6019a88c6f52570b63e1baf50f62963a3eac52a03a800bb070d7c87d twolame-0.4.0.tar.gz
sha256 257a842724705950b07da76ce0e22ffa80ec77b3e9dfc6702522ac342409da0f COPYING
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# twolame
#
################################################################################
TWOLAME_VERSION = 0.4.0
TWOLAME_SITE = http://downloads.sourceforge.net/project/twolame/twolame/$(TWOLAME_VERSION)
TWOLAME_INSTALL_STAGING = YES
TWOLAME_LICENSE = LGPL-2.1+
TWOLAME_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
TWOLAME_DEPENDENCIES += host-pkgconf libsndfile
TWOLAME_CONF_OPTS += --enable-sndfile
else
TWOLAME_CONF_OPTS += --disable-sndfile
endif
$(eval $(autotools-package))