blob: c265dfe1bf884772e437f2811d60a29105524d3c (
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
27
28
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= sed
PKG_VERSION:= 4.4
PKG_RELEASE:= 1
PKG_HASH:= cbd6ebc5aaf080ed60d0162d7f6aeae58211a1ee9ba9bb25623daa6cd942683b
PKG_DESCR:= stream editor
PKG_SECTION:= base/tools
PKG_URL:= http://www.gnu.org/software/sed/
PKG_SITES:= ${MASTER_SITE_GNU:=sed/}
PKG_BB:= 1
include $(ADK_TOPDIR)/mk/host.mk
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call HOST_template,SED,sed,$(PKG_VERSION)-${PKG_RELEASE}))
$(eval $(call PKG_template,SED,sed,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
sed-install:
$(INSTALL_DIR) $(IDIR_SED)/usr/bin
$(INSTALL_BIN) $(WRKINST)/usr/bin/sed \
$(IDIR_SED)/usr/bin
include ${ADK_TOPDIR}/mk/host-bottom.mk
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|