blob: 1a313eb1cee4e741851d9df654ef5dd08ae48031 (
plain)
| 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
 | #############################################################
#
# sed
#
#############################################################
SED_VERSION = 4.2.1
SED_SOURCE = sed-$(SED_VERSION).tar.gz
SED_SITE = $(BR2_GNU_MIRROR)/sed
SED_CONF_OPT = --bindir=/usr/bin \
		--libdir=/lib \
		--libexecdir=/usr/lib \
		--sysconfdir=/etc \
		--datadir=/usr/share \
		--localstatedir=/var \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--include=$(STAGING_DIR)/usr/include
define SED_MOVE_BINARY
	mv $(TARGET_DIR)/usr/bin/sed $(TARGET_DIR)/bin/
endef
SED_POST_INSTALL_TARGET_HOOKS = SED_MOVE_BINARY
$(eval $(call AUTOTARGETS,package,sed))
 |