Andreas Wacknitz
2023-10-05 d19693c67fefbcd7f19d8938f9bed02257998374
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL)". You may
# only use this file in accordance with the terms of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
 
#
# Copyright 2021 (c) Tim Mooney. All rights reserved.
#
BUILD_BITS= 64
BUILD_STYLE= meson
include ../../../make-rules/shared-macros.mk
 
COMPONENT_NAME=         dav1d
COMPONENT_VERSION=      1.3.0
COMPONENT_SUMMARY=      A fast, cross-platform AV1 decoder
COMPONENT_PROJECT_URL=  https://code.videolan.org/videolan/dav1d
COMPONENT_SRC=          $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=      $(COMPONENT_SRC).tar.gz
COMPONENT_ARCHIVE_URL=    $(COMPONENT_PROJECT_URL)/-/archive/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_ARCHIVE_HASH= sha256:1b3e75433dd69eb88ff3190ed1b1707ca5b9f43260b6348c551455c885eaab3a
COMPONENT_FMRI=         codec/dav1d
COMPONENT_CLASSIFICATION=System/Multimedia Libraries
COMPONENT_LICENSE=      BSD 2-Clause Simplified License
COMPONENT_LICENSE_FILE= COPYING
 
include $(WS_MAKE_RULES)/encumbered.mk
include $(WS_MAKE_RULES)/common.mk
 
# We need XPG6MODE for clock_gettime():
CFLAGS += $(CPP_XPG6MODE)
CONFIGURE_OPTIONS += -Denable_asm=true
 
unexport SHELLOPTS
# (first) delete the timing information from any line
# delete the "exit status N", it can cause issues too
# print lines that start with " N/NNN"
# print everything between "^Ok:" and "^Timeout:"
# delete the ninja log-related stuff at the end
COMPONENT_TEST_TRANSFORMS += \
    '-n ' \
    '-e "s/[     ]*[0-9][0-9]*\.[0-9][0-9]s//" ' \
    '-e "s/[     ]*exit status [0-9][0-9]*//" ' \
    '-e "/^[     ]*[0-9][0-9]*\/[0-9][0-9]* /p" ' \
    '-e "/^Summary of/p" ' \
    '-e "/^Ok:/,/^Timeout:/p" ' \
    '-e "/^Full log written.*/,/^ninja: build stopped.*/d" '
 
# build requirement
REQUIRED_PACKAGES += developer/assembler/nasm
 
# Auto-generated dependencies
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math