mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
63332c33aa
This patch adds CPE ID information for a significant number of packages. Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
584 B
Makefile
25 lines
584 B
Makefile
################################################################################
|
|
#
|
|
# sed
|
|
#
|
|
################################################################################
|
|
|
|
SED_VERSION = 4.8
|
|
SED_SOURCE = sed-$(SED_VERSION).tar.xz
|
|
SED_SITE = $(BR2_GNU_MIRROR)/sed
|
|
SED_LICENSE = GPL-3.0
|
|
SED_LICENSE_FILES = COPYING
|
|
SED_CPE_ID_VENDOR = gnu
|
|
|
|
SED_CONF_OPTS = \
|
|
--bindir=/bin \
|
|
--libdir=/lib \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--include=$(STAGING_DIR)/usr/include
|
|
|
|
$(eval $(autotools-package))
|