diff options
author | Ross Burton <ross@openedhand.com> | 2007-01-22 17:02:26 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-01-22 17:02:26 +0000 |
commit | ae28b7fed99ab48cc3b05cd57ee38faaea50fb5c (patch) | |
tree | 8889206f5f36b6baed8baaeeb74095e0e4e213b2 /meta/packages/pax-utils | |
parent | 8d774c0a31a1599c1929d180772f25a0534c7649 (diff) | |
download | poky-ae28b7fed99ab48cc3b05cd57ee38faaea50fb5c.tar.gz |
Add pax-utils for insane.bbclass
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1194 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/pax-utils')
-rw-r--r-- | meta/packages/pax-utils/pax-utils-native_0.1.13.bb | 7 | ||||
-rw-r--r-- | meta/packages/pax-utils/pax-utils_0.1.13.bb | 17 |
2 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/pax-utils/pax-utils-native_0.1.13.bb b/meta/packages/pax-utils/pax-utils-native_0.1.13.bb new file mode 100644 index 0000000000..d586dcb29e --- /dev/null +++ b/meta/packages/pax-utils/pax-utils-native_0.1.13.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | inherit native | ||
2 | |||
3 | require pax-utils_${PV}.bb | ||
4 | |||
5 | do_stage() { | ||
6 | oe_runmake PREFIX=${STAGING_DIR}/${HOST_SYS} install | ||
7 | } | ||
diff --git a/meta/packages/pax-utils/pax-utils_0.1.13.bb b/meta/packages/pax-utils/pax-utils_0.1.13.bb new file mode 100644 index 0000000000..6fc6850142 --- /dev/null +++ b/meta/packages/pax-utils/pax-utils_0.1.13.bb | |||
@@ -0,0 +1,17 @@ | |||
1 | DESCRIPTION = "Various ELF utilities" | ||
2 | HOMEPAGE = "http://www.gentoo.org/proj/en/hardened/pax-utils.xml" | ||
3 | LICENSE = "GPLv2" | ||
4 | |||
5 | SRC_URI = "${GENTOO_MIRROR}/pax-utils-${PV}.tar.bz2;md5sum=5f09df47a16e83462384b44b75310539" | ||
6 | S = "${WORKDIR}/pax-utils-${PV}" | ||
7 | |||
8 | CPPFLAGS += "-D_GNU_SOURCE " | ||
9 | |||
10 | do_compile() { | ||
11 | oe_runmake | ||
12 | } | ||
13 | |||
14 | do_install() { | ||
15 | oe_runmake DESTDIR=${D} install | ||
16 | } | ||
17 | |||