Blame view

buildroot/buildroot-2016.08.1/package/x264/x264.mk 1.61 KB
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
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
59
60
61
62
63
64
  ################################################################################
  #
  # x264
  #
  ################################################################################
  
  X264_VERSION = 3b70645597bea052d2398005bc723212aeea6875
  X264_SITE = git://git.videolan.org/x264.git
  X264_LICENSE = GPLv2+
  X264_DEPENDENCIES = host-pkgconf
  X264_LICENSE_FILES = COPYING
  X264_INSTALL_STAGING = YES
  X264_CONF_OPTS = --disable-avs
  
  ifeq ($(BR2_i386)$(BR2_x86_64),y)
  # yasm needed for assembly files
  X264_DEPENDENCIES += host-yasm
  X264_CONF_ENV += AS="$(HOST_DIR)/usr/bin/yasm"
  else ifeq ($(BR2_ARM_CPU_ARMV7A)$(BR2_aarch64),y)
  # We need to pass gcc as AS, because the ARM assembly files have to be
  # preprocessed
  X264_CONF_ENV += AS="$(TARGET_CC)"
  else
  X264_CONF_OPTS += --disable-asm
  endif
  
  ifeq ($(BR2_STATIC_LIBS),)
  X264_CONF_OPTS += --enable-pic --enable-shared
  endif
  
  ifeq ($(BR2_PACKAGE_X264_CLI),)
  X264_CONF_OPTS += --disable-cli
  endif
  
  ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),)
  X264_CONF_OPTS += --disable-thread
  endif
  
  # the configure script is not generated by autoconf
  define X264_CONFIGURE_CMDS
  	(cd $(@D); $(TARGET_CONFIGURE_OPTS) $(X264_CONF_ENV) ./configure \
  		--prefix=/usr \
  		--host="$(GNU_TARGET_NAME)" \
  		--cross-prefix="$(TARGET_CROSS)" \
  		--disable-ffms \
  		--enable-static \
  		--disable-opencl \
  		$(X264_CONF_OPTS) \
  	)
  endef
  
  define X264_BUILD_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
  endef
  
  define X264_INSTALL_STAGING_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(STAGING_DIR)" -C $(@D) install
  endef
  
  define X264_INSTALL_TARGET_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
  endef
  
  $(eval $(generic-package))