Blame view

buildroot/buildroot-2016.08.1/package/gzip/gzip.mk 597 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  ################################################################################
  #
  # gzip
  #
  ################################################################################
  
  GZIP_VERSION = 1.8
  GZIP_SOURCE = gzip-$(GZIP_VERSION).tar.xz
  GZIP_SITE = $(BR2_GNU_MIRROR)/gzip
  # Some other tools expect it to be in /bin
  GZIP_CONF_OPTS = --exec-prefix=/
  # Prefer full gzip over potentially lightweight/slower from busybox
  GZIP_DEPENDENCIES = $(if $(BR2_PACKAGE_BUSYBOX),busybox)
  GZIP_LICENSE = GPLv3+
  GZIP_LICENSE_FILES = COPYING
  GZIP_CONF_ENV += gl_cv_func_fflush_stdin=yes
  
  $(eval $(autotools-package))