blob: 0ccb7a5e036619b550100fffe0569ea258c681bb (
plain)
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
|
# Distributed under the terms of the GNU General Public License v2
# Copyright 2019 Gluzskiy Alexandr <sss@sss.chaoslab.ru>
SCM_REPOSITORY="https://aomedia.googlesource.com/aom"
require scm-git
require cmake [ api=2 ]
SUMMARY="AV1 codec library"
HOMEPAGE="https://aomedia.googlesource.com/aom"
LICENCES=""
SLOT="0"
MYOPTIONS="
"
DEPENDENCIES="
"
CMAKE_SRC_CONFIGURE_PARAMS=(
-DCONFIG_SHARED=1
-DCONFIG_STATIC=0
-DENABLE_WERROR=FALSE
-DBUILD_SHARED_LIBS=1
)
|