diff options
Diffstat (limited to 'recipes/gsl')
-rw-r--r-- | recipes/gsl/gsl.inc | 19 | ||||
-rw-r--r-- | recipes/gsl/gsl_1.10.bb | 3 | ||||
-rw-r--r-- | recipes/gsl/gsl_1.12.bb | 3 |
3 files changed, 25 insertions, 0 deletions
diff --git a/recipes/gsl/gsl.inc b/recipes/gsl/gsl.inc new file mode 100644 index 0000000000..bc4865c15b --- /dev/null +++ b/recipes/gsl/gsl.inc @@ -0,0 +1,19 @@ +DESCRIPTION = "GNU Scientific Library" +HOMEPAGE = "http://www.gnu.org/software/gsl/" +SECTION = "libs" +PRIORITY = "optional" +LICENSE = "GPL" +PR = "r0" + +inherit autotools pkgconfig binconfig + +LEAD_SONAME = "libgsl.so" + +do_stage() { + oe_runmake DESTDIR=${S}/.install install + oe_libinstall -so -C cblas/.libs/ libgslcblas ${STAGING_LIBDIR} + oe_libinstall -so -C .libs/ libgsl ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/gsl + install -m 0644 .install${includedir}/gsl/* ${STAGING_INCDIR}/gsl +} diff --git a/recipes/gsl/gsl_1.10.bb b/recipes/gsl/gsl_1.10.bb new file mode 100644 index 0000000000..8ebe5304c4 --- /dev/null +++ b/recipes/gsl/gsl_1.10.bb @@ -0,0 +1,3 @@ +include gsl.inc + +SRC_URI = "${GNU_MIRROR}/gsl/gsl-${PV}.tar.gz" diff --git a/recipes/gsl/gsl_1.12.bb b/recipes/gsl/gsl_1.12.bb new file mode 100644 index 0000000000..8ebe5304c4 --- /dev/null +++ b/recipes/gsl/gsl_1.12.bb @@ -0,0 +1,3 @@ +include gsl.inc + +SRC_URI = "${GNU_MIRROR}/gsl/gsl-${PV}.tar.gz" |