Disabled docs and test from libgcrypt (#3754)
[openwrt/svn-archive/archive.git] / libs / gsl / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=gsl
12 PKG_VERSION:=1.9
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.gnu.org/gnu/gsl/
17 PKG_MD5SUM:=81dca4362ae8d2aa1547b7d010881e43
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/libgsl
22 SECTION:=libs
23 CATEGORY:=Libraries
24 TITLE:=GNU Scientific Library
25 URL:=http://www.gnu.org/software/gsl/
26 endef
27
28 define Package/libgsl/description
29 The library provides a wide range of mathematical routines such as
30 random number generators, special functions and least-squares fitting.
31 There are over 1000 functions in total with an extensive test suite.
32 endef
33
34 define Build/Compile
35 rm -rf $(PKG_INSTALL_DIR)
36 mkdir -p $(PKG_INSTALL_DIR)
37 $(MAKE) -C $(PKG_BUILD_DIR) \
38 $(TARGET_CONFIGURE_OPTS) \
39 DESTDIR="$(PKG_INSTALL_DIR)" \
40 all install
41 endef
42
43 define Package/libgsl/install
44 $(INSTALL_DIR) $(1)/usr/lib
45 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgsl.so* $(1)/usr/lib/
46 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgslcblas.so* $(1)/usr/lib/
47 endef
48
49 define Build/InstallDev
50 mkdir -p $(1)/usr/include
51 $(CP) $(PKG_INSTALL_DIR)/usr/include/gsl/*.h $(1)/usr/include/
52 mkdir -p $(1)/usr/lib
53 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgsl.{a,so*} $(1)/usr/lib/
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgslcblas.{a,so*} $(1)/usr/lib/
55 endef
56
57 define Build/UninstallDev
58 rm -rf $(1)/usr/include/gsl
59 endef
60
61 $(eval $(call BuildPackage,libgsl))