Another pass of .oe cleanups.
[vuplus_openembedded] / gsl / gsl_1.4.oe
1 DESCRIPTION = "GNU Scientific Library"
2 SECTION = "libs"
3 PRIORITY = "optional"
4 LICENSE = "GPL"
5 RDEPENDS = "libc6"
6 DEPENDS = "virtual/libc"
7
8 SRC_URI = "http://www.mirror.ac.uk/sites/sources.redhat.com/pub/gsl/gsl-${PV}.tar.gz"
9
10 inherit autotools libtool pkgconfig
11
12 do_stage() {
13         oe_runmake DESTDIR=${S}/.install install
14         oe_soinstall .install/usr/lib/libgslcblas.so.0.0.0 ${STAGING_LIBDIR}/
15         oe_soinstall .install/usr/lib/libgsl.so.0.5.0 ${STAGING_LIBDIR}/
16         cp -a .install/usr/include/* ${STAGING_INCDIR}/
17
18         cat gsl-config | sed -e "s,-I/usr/include,-I${STAGING_INCDIR} -I${STAGING_INCDIR}/python2.3," \
19                        | sed -e "s,-L/usr/lib,-L${STAGING_LIBDIR}," > ${STAGING_BINDIR}/gsl-config
20         chmod a+rx ${STAGING_BINDIR}/gsl-config
21 }