116811c264
Contains a number of fixes. Release notes: 0.4.28: https://lists.freedesktop.org/archives/gstreamer-announce/2017-November/000449.html 0.4.29: https://lists.freedesktop.org/archives/gstreamer-announce/2019-April/000483.html Also add a hash for the license file. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
731 B
Makefile
28 lines
731 B
Makefile
################################################################################
|
|
#
|
|
# orc
|
|
#
|
|
################################################################################
|
|
|
|
ORC_VERSION = 0.4.29
|
|
ORC_SOURCE = orc-$(ORC_VERSION).tar.xz
|
|
ORC_SITE = http://gstreamer.freedesktop.org/data/src/orc
|
|
ORC_LICENSE = BSD-2-Clause, BSD-3-Clause
|
|
ORC_LICENSE_FILES = COPYING
|
|
ORC_INSTALL_STAGING = YES
|
|
ORC_DEPENDENCIES = host-orc
|
|
|
|
define ORC_REMOVE_BUGREPORT
|
|
rm -f $(TARGET_DIR)/usr/bin/orc-bugreport
|
|
endef
|
|
|
|
define ORC_REMOVE_DEVFILES
|
|
rm -f $(TARGET_DIR)/usr/bin/orcc
|
|
endef
|
|
|
|
ORC_POST_INSTALL_TARGET_HOOKS += ORC_REMOVE_BUGREPORT
|
|
ORC_POST_INSTALL_TARGET_HOOKS += ORC_REMOVE_DEVFILES
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|