kumquat-buildroot/package/sed/sed.mk
Peter Korsgaard fdab167442 sed: directly install binary into /bin
Instead of having to move it after installation, which doesn't work with the
merged /usr option.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-10-20 22:54:24 +02:00

23 lines
521 B
Makefile

################################################################################
#
# sed
#
################################################################################
SED_VERSION = 4.2.2
SED_SITE = $(BR2_GNU_MIRROR)/sed
SED_LICENSE = GPLv3
SED_LICENSE_FILES = COPYING
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))