diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-07-13 07:41:16 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-13 07:41:16 +0000 |
commit | 25979309f8be6cd0a7120e298e5e5344660fe46b (patch) | |
tree | 23b5ccf95749394a9db0f4426cfc8c873a13acd1 /packages/install/install-native_0.1.bb | |
parent | b3bc53b18619a0e0ad3df809bb3a16c127979d40 (diff) |
Add install-native package and remove the install-sh from those packages
which used it to get round the install -s problem - now simply add
install-native to the DEPENDS for packages which attempt to use the host
install with '-s'
Diffstat (limited to 'packages/install/install-native_0.1.bb')
-rw-r--r-- | packages/install/install-native_0.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/install/install-native_0.1.bb b/packages/install/install-native_0.1.bb new file mode 100644 index 0000000000..2ae7df615a --- /dev/null +++ b/packages/install/install-native_0.1.bb @@ -0,0 +1,25 @@ +# This package uses the GNU autotools install-sh script to implement +# a target-capable 'install' command. +DESCRIPTION = "Target install command" +MAINTAINER = "John Bowler <jbowler@acm.org>" +SECTION = "devel" +PRIORITY = "optional" +LICENSE = "MIT" +INHIBIT_DEFAULT_DEPS = "1" + +SRC_URI = "file://install-sh" + +PACKAGES = "" +S = "${WORKDIR}" + +do_stage() { + # When the install command is executed 'STRIP' is defined correctly in + # the environment + rm -f ${STAGING_BINDIR}/install-sh + cp install-sh ${STAGING_BINDIR}/install-sh + chmod 755 ${STAGING_BINDIR}/install-sh + rm -f ${STAGING_BINDIR}/install + echo '#!/bin/sh' >${STAGING_BINDIR}/install + echo 'STRIPPROG="$STRIP" exec sh "${STAGING_BINDIR}/install-sh" "$@"' >>${STAGING_BINDIR}/install + chmod 755 ${STAGING_BINDIR}/install +} |