diff options
author | Holger Freyther <zecke@selfish.org> | 2006-02-12 19:03:27 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-12 19:03:27 +0000 |
commit | 2e1c29f22ce2c7815a0b129712908706ea1f1140 (patch) | |
tree | 9f9aea30a969fbbc241fc5ae8f7d72c5e8dd9823 /packages/pax-utils | |
parent | d610bd848e19c84e3de9a38414a0cc9815903a3c (diff) |
conf/bitbake.conf:
- Add GENTOO_MIRROR
packages/pax-utils:
- Add version 0.1.9 of the pax utilities including
scanelf. I will use it in a dedicated QA bbclass
to check for common security issues.
Diffstat (limited to 'packages/pax-utils')
-rw-r--r-- | packages/pax-utils/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/pax-utils/pax-utils-native_0.1.9.bb | 7 | ||||
-rw-r--r-- | packages/pax-utils/pax-utils_0.1.9.bb | 16 |
3 files changed, 23 insertions, 0 deletions
diff --git a/packages/pax-utils/.mtn2git_empty b/packages/pax-utils/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/pax-utils/.mtn2git_empty diff --git a/packages/pax-utils/pax-utils-native_0.1.9.bb b/packages/pax-utils/pax-utils-native_0.1.9.bb new file mode 100644 index 0000000000..d586dcb29e --- /dev/null +++ b/packages/pax-utils/pax-utils-native_0.1.9.bb @@ -0,0 +1,7 @@ +inherit native + +require pax-utils_${PV}.bb + +do_stage() { + oe_runmake PREFIX=${STAGING_DIR}/${HOST_SYS} install +} diff --git a/packages/pax-utils/pax-utils_0.1.9.bb b/packages/pax-utils/pax-utils_0.1.9.bb new file mode 100644 index 0000000000..3aa6b22ee8 --- /dev/null +++ b/packages/pax-utils/pax-utils_0.1.9.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "Various ELF utilities" +HOMEPAGE = "http://www.gentoo.org/proj/en/hardened/pax-utils.xml" +LICENSE = "GPLv2" +MAINTAINER = "freyther@handhelds.org" + +SRC_URI = "${GENTOO_MIRROR}/pax-utils-${PV}.tar.bz2;md5sum=71e8d13d072efcbc4123960211a34d4f" +S = "${WORKDIR}/pax-utils-${PV}" + +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake DESTDIR=${D} install +} + |