Blame view

buildroot/buildroot-2016.08.1/package/unrar/unrar.mk 631 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
  ################################################################################
  #
  # unrar
  #
  ################################################################################
  
  UNRAR_VERSION = 5.4.3
  UNRAR_SOURCE = unrarsrc-$(UNRAR_VERSION).tar.gz
  UNRAR_SITE = http://www.rarlab.com/rar
  UNRAR_LICENSE = unrar
  UNRAR_LICENSE_FILES = license.txt
  
  define UNRAR_BUILD_CMDS
  	$(MAKE) CXX="$(TARGET_CXX)" STRIP="/bin/true" \
  		CXXFLAGS="$(TARGET_CXXFLAGS) -pthread" \
  		LDFLAGS="$(TARGET_LDFLAGS) -pthread" -C $(@D)
  endef
  
  define UNRAR_INSTALL_TARGET_CMDS
  	$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR)/usr install
  endef
  
  $(eval $(generic-package))