summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-09-12 01:59:11 +0000
committerChris Larson <clarson@kergoth.com>2003-09-12 01:59:11 +0000
commit3594c0a199abe27e1bdb5bfff2c1c3b0231860a7 (patch)
tree0c117d62872e043cc35f567b3e0a81d4b5397e0a /content
parentc943a0297a1b11ed4b99c6741881a0f5e579052c (diff)
Install functions for expat, ipkg, and dropbear.
BKrev: 3f61286fR2UDIvEdei96wA6xdeQUPA
Diffstat (limited to 'content')
-rw-r--r--content/dropbear-0.36.oe2
-rw-r--r--content/expat-1.95.6.oe24
-rw-r--r--content/ipkg-0.99.84.oe5
3 files changed, 30 insertions, 1 deletions
diff --git a/content/dropbear-0.36.oe b/content/dropbear-0.36.oe
index 1d4b748074..0f71a6f158 100644
--- a/content/dropbear-0.36.oe
+++ b/content/dropbear-0.36.oe
@@ -9,6 +9,6 @@ CFLAGS_append = " -I${S}/libtomcrypt"
LD=${CC}
do_install () {
set -e
- install -d ${D}/usr/sbin
+ install -d ${D}/usr/sbin ${D}/usr/bin
oe_runmake DESTDIR=${D} install
}
diff --git a/content/expat-1.95.6.oe b/content/expat-1.95.6.oe
index e69de29bb2..c0cd17c8b5 100644
--- a/content/expat-1.95.6.oe
+++ b/content/expat-1.95.6.oe
@@ -0,0 +1,24 @@
+DESCRIPTION = Jim Clarkes XML parser library.
+DEPENDS = virtual/libc
+RDEPENDS = libc6
+
+SRC_URI = ${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz
+S = "${WORKDIR}/${P}"
+
+do_stage () {
+ set -e
+ install -m 0644 lib/expat.h ${STAGING_DIR}/target/include/
+ install -m 0755 .libs/libexpat.so.0.4.0 ${STAGING_LIBDIR}/
+ ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so.1
+ ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so.0
+ ln -sf libexpat.so.0.4.0 ${STAGING_LIBDIR}/libexpat.so
+}
+
+do_install () {
+ set -e
+ oe_runmake prefix="${D}/${prefix}" \
+ bindir="${D}/${bindir}" \
+ libdir="${D}/${libdir}" \
+ includedir="${D}/${includedir}" \
+ install
+}
diff --git a/content/ipkg-0.99.84.oe b/content/ipkg-0.99.84.oe
index 68837db6c4..71b5a251ec 100644
--- a/content/ipkg-0.99.84.oe
+++ b/content/ipkg-0.99.84.oe
@@ -12,3 +12,8 @@ do_compile () {
base_do_compile $@
) || die "compilation failed."
}
+
+do_install () {
+ set -e
+ oe_runmake DESTDIR="${D}" install
+}