b197a32b7ed0d2e52e0b34325c88242b305c7292
[vuplus_openembedded] / libelf / libelf_0.8.3.oe
1 DEPENDS = "virtual/libc"
2 RDEPENDS = "libc6"
3 SECTION = "libc"
4 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
5 DESCRIPTION = "an ELF object file access library\
6  The elf library provides routines to access, and manipulate, Elf object\
7  files. It is still not complete, but is required for a number of programs,\
8  such as Eli (a state of the art compiler generation system), and Elk (the\
9  Extension Language Kit - an implementation of the Scheme programming\
10  language.)\
11  .\
12  This shared library may be needed by pre-packaged programs. To compile\
13  programs with this library, you will need to install the libelfg0-dev\
14  package as well.
15
16 SRC_URI = http://www.stud.uni-hannover.de/~michael/software/libelf-${PV}.tar.gz
17
18 inherit autotools
19
20 do_configure_prepend () {
21         if test ! -e acinclude.m4; then
22                 cp aclocal.m4 acinclude.m4
23         fi
24 }
25
26 prefix = "/usr"
27 exec_prefix = /usr
28 libdir = "/usr/lib"
29 includedir = "/usr/include"
30
31 do_install () {
32         oe_runmake 'prefix=${D}${prefix}' 'exec_prefix=${D}${exec_prefix}' \
33                    'libdir=${D}${libdir}' 'includedir=${D}${includedir}' \
34                    install
35 }