mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
7
package/bcg729/Config.in
Normal file
7
package/bcg729/Config.in
Normal file
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_BCG729
|
||||
bool "bcg729"
|
||||
help
|
||||
Bcg729 is an opensource implementation of both encoder and
|
||||
decoder of the ITU G729 Annex A/B speech codec.
|
||||
|
||||
http://www.linphone.org/technical-corner/bcg729/overview
|
||||
3
package/bcg729/bcg729.hash
Normal file
3
package/bcg729/bcg729.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 94b3542a06cbd96306efc19f959f9febae62806a22599063f82a8c33e989d48b bcg729-1.0.4.tar.gz
|
||||
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING
|
||||
21
package/bcg729/bcg729.mk
Normal file
21
package/bcg729/bcg729.mk
Normal file
@@ -0,0 +1,21 @@
|
||||
################################################################################
|
||||
#
|
||||
# bcg729
|
||||
#
|
||||
################################################################################
|
||||
|
||||
BCG729_VERSION = 1.0.4
|
||||
BCG729_SITE = $(call github,BelledonneCommunications,bcg729,$(BCG729_VERSION))
|
||||
BCG729_LICENSE = GPL-2.0+
|
||||
BCG729_LICENSE_FILES = COPYING
|
||||
BCG729_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
BCG729_CONF_OPTS += -DENABLE_SHARED=OFF -DENABLE_STATIC=ON
|
||||
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
||||
BCG729_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=ON
|
||||
else ifeq ($(BR2_SHARED_LIBS),y)
|
||||
BCG729_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_STATIC=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user