mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 07:57:43 +00:00
libamcodec: new package
Signed-off-by: Dagg Stompler <daggs@gmx.com> [Thomas: - use the AML_LIBS_STAGING_DIR variable instead of PREFIX/M_PREFIX to indicate the compiler sysroot, which allows to use a foreach loop in the build commands.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
8159b4f80a
commit
7ddd6bff32
@ -1104,6 +1104,7 @@ endmenu
|
|||||||
menu "Multimedia"
|
menu "Multimedia"
|
||||||
source "package/bitstream/Config.in"
|
source "package/bitstream/Config.in"
|
||||||
source "package/libaacs/Config.in"
|
source "package/libaacs/Config.in"
|
||||||
|
source "package/libamcodec/Config.in"
|
||||||
source "package/libass/Config.in"
|
source "package/libass/Config.in"
|
||||||
source "package/libbdplus/Config.in"
|
source "package/libbdplus/Config.in"
|
||||||
source "package/libbluray/Config.in"
|
source "package/libbluray/Config.in"
|
||||||
|
13
package/libamcodec/Config.in
Normal file
13
package/libamcodec/Config.in
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
comment "libamcodec needs a toolchain w/ threads"
|
||||||
|
depends on BR2_arm || BR2_aarch64
|
||||||
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBAMCODEC
|
||||||
|
bool "libamcodec"
|
||||||
|
depends on BR2_arm || BR2_aarch64
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
|
||||||
|
select BR2_PACKAGE_ALSA_LIB
|
||||||
|
help
|
||||||
|
Interface library for Amlogic media codecs
|
||||||
|
|
||||||
|
https://github.com/mdrjr/c2_aml_libs.git
|
2
package/libamcodec/libamcodec.hash
Normal file
2
package/libamcodec/libamcodec.hash
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Locally computed hash
|
||||||
|
sha256 5e4a1157e75f802585445df55182b5ef123f635b7faca95fbda3f7cdef8bad1c libamcodec-6f9b99182f94be14fce785c75aa1e9bce868e229.tar.gz
|
36
package/libamcodec/libamcodec.mk
Normal file
36
package/libamcodec/libamcodec.mk
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# libamcodec
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LIBAMCODEC_VERSION = 6f9b99182f94be14fce785c75aa1e9bce868e229
|
||||||
|
LIBAMCODEC_SITE = $(call github,mdrjr,c2_aml_libs,$(LIBAMCODEC_VERSION))
|
||||||
|
LIBAMCODEC_DEPENDENCIES = alsa-lib
|
||||||
|
LIBAMCODEC_LICENSE = Unclear
|
||||||
|
LIBAMCODEC_INSTALL_STAGING = YES
|
||||||
|
|
||||||
|
# This package uses the AML_LIBS_STAGING_DIR variable to construct the
|
||||||
|
# header and library paths used when compiling
|
||||||
|
define LIBAMCODEC_BUILD_CMDS
|
||||||
|
$(foreach d,amavutils amadec amcodec,\
|
||||||
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||||
|
-C $(@D)/$(d) AML_LIBS_STAGING_DIR=$(STAGING_DIR)
|
||||||
|
)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define LIBAMCODEC_INSTALL_STAGING_CMDS
|
||||||
|
$(INSTALL) -D -m 0755 $(@D)/amavutils/libamavutils.so $(STAGING_DIR)/usr/lib/libamavutils.so
|
||||||
|
$(INSTALL) -D -m 0555 $(@D)/amadec/libamadec.so $(STAGING_DIR)/usr/lib/libamadec.so
|
||||||
|
$(INSTALL) -D -m 0555 $(@D)/amcodec/libamcodec.so $(STAGING_DIR)/usr/lib/libamcodec.so
|
||||||
|
mkdir -p $(STAGING_DIR)/usr/include/amcodec
|
||||||
|
cp -rf $(@D)/amcodec/include/* $(STAGING_DIR)/usr/include/amcodec
|
||||||
|
endef
|
||||||
|
|
||||||
|
define LIBAMCODEC_INSTALL_TARGET_CMDS
|
||||||
|
$(INSTALL) -D -m 0755 $(@D)/amavutils/libamavutils.so $(TARGET_DIR)/usr/lib/libamavutils.so
|
||||||
|
$(INSTALL) -D -m 0555 $(@D)/amadec/libamadec.so $(TARGET_DIR)/usr/lib/libamadec.so
|
||||||
|
$(INSTALL) -D -m 0555 $(@D)/amcodec/libamcodec.so $(TARGET_DIR)/usr/lib/libamcodec.so
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(generic-package))
|
Loading…
x
Reference in New Issue
Block a user