Blame view

buildroot/buildroot-2016.08.1/package/opusfile/opusfile.mk 696 Bytes
6b13f685e   김민수   BSP 최초 추가
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
  ################################################################################
  #
  # opusfile
  #
  ################################################################################
  
  OPUSFILE_VERSION = 0.8
  OPUSFILE_SITE = http://downloads.xiph.org/releases/opus
  OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
  OPUSFILE_LICENSE = BSD-3c
  OPUSFILE_LICENSE_FILES = COPYING
  OPUSFILE_INSTALL_STAGING = YES
  
  ifeq ($(BR2_PACKAGE_OPENSSL),y)
  OPUSFILE_DEPENDENCIES += openssl
  else
  OPUSFILE_CONF_OPTS += --disable-http
  endif
  
  # Use the same as opus package since it's a dep and we can't mix
  ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y)
  OPUSFILE_CONF_OPTS += --enable-fixed-point
  endif
  
  $(eval $(autotools-package))