Blame view

buildroot/buildroot-2016.08.1/package/audiofile/audiofile.mk 753 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
  ################################################################################
  #
  # audiofile
  #
  ################################################################################
  
  AUDIOFILE_VERSION = 0.3.6
  AUDIOFILE_SITE = http://audiofile.68k.org
  AUDIOFILE_INSTALL_STAGING = YES
  AUDIOFILE_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
  AUDIOFILE_CONF_OPTS = --disable-examples
  AUDIOFILE_DEPENDENCIES = host-pkgconf
  # configure is outdated and has old bugs because of it
  AUDIOFILE_AUTORECONF = YES
  AUDIOFILE_LICENSE = GPLv2+, LGPLv2.1+
  AUDIOFILE_LICENSE_FILES = COPYING COPYING.GPL
  
  ifeq ($(BR2_PACKAGE_FLAC),y)
  AUDIOFILE_DEPENDENCIES += flac
  AUDIOFILE_CONF_OPTS += --enable-flac
  else
  AUDIOFILE_CONF_OPTS += --disable-flac
  endif
  
  $(eval $(autotools-package))