[packages] Use default templates instead of custom reimplementations where applicable
[packages.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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=gsl
11 PKG_VERSION:=1.9
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/gsl
16 PKG_MD5SUM:=81dca4362ae8d2aa1547b7d010881e43
17
18 PKG_FIXUP:=libtool
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/libgsl
24   SECTION:=libs
25   CATEGORY:=Libraries
26   DEPENDS:=@!TARGET_avr32
27   TITLE:=GNU Scientific Library
28   URL:=http://www.gnu.org/software/gsl/
29 endef
30
31 define Package/libgsl/description
32         The library provides a wide range of mathematical routines such as
33         random number generators, special functions and least-squares fitting.
34         There are over 1000 functions in total with an extensive test suite.
35 endef
36
37 TARGET_CFLAGS += $(FPIC)
38
39 define Package/libgsl/install
40         $(INSTALL_DIR) $(1)/usr/lib
41         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgsl.so* $(1)/usr/lib/
42         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgslcblas.so* $(1)/usr/lib/
43 endef
44
45 define Build/InstallDev
46         $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib
47         $(CP) $(PKG_INSTALL_DIR)/usr/include/gsl/*.h $(1)/usr/include/
48         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgsl.* $(1)/usr/lib/
49         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgslcblas.* $(1)/usr/lib/
50 endef
51
52 $(eval $(call BuildPackage,libgsl))