aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gsl/gsl.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/gsl/gsl.inc')
-rw-r--r--recipes/gsl/gsl.inc19
1 files changed, 19 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
+}