Add another download source, also mirror it to openwrt mirror (#1124)
[openwrt.git] / package / gmp / Makefile
1
2 # Copyright (C) 2006 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:=gmp
12 PKG_VERSION:=4.1.4
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@GNU/gmp
17 PKG_MD5SUM:=0aa7d3b3f5b5ec5951e7dddd6f65e891
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libgmp
26   SECTION:=libs
27   CATEGORY:=Libraries
28   TITLE:=GNU multiprecision arithmetic library
29   URL:=http://www.swox.com/gmp/
30 endef
31
32 define Build/Configure
33         $(call Build/Configure/Default, \
34                 --enable-shared \
35                 --enable-static, \
36                 CC="$(TARGET_CROSS)gcc" \
37         )
38 endef
39
40 define Build/Compile
41         $(call Build/Compile/Default, \
42                 DESTDIR="$(PKG_INSTALL_DIR)" \
43                 CC="$(TARGET_CC)" \
44                 all install \
45         )
46 endef
47
48 define Build/InstallDev
49         mkdir -p $(STAGING_DIR)/usr/include
50         $(CP) $(PKG_INSTALL_DIR)/usr/include/gmp* $(STAGING_DIR)/usr/include/
51         mkdir -p $(STAGING_DIR)/usr/lib
52         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.{a,so*} $(STAGING_DIR)/usr/lib/
53 endef
54
55 define Build/UninstallDev
56         rm -rf  $(STAGING_DIR)/usr/include/gmp* \
57                 $(STAGING_DIR)/usr/lib/libgmp.{a,so*}
58 endef
59
60 define Package/libgmp/install
61         $(INSTALL_DIR) $(1)/usr/lib
62         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.so.* $(1)/usr/lib/
63 endef
64
65 $(eval $(call BuildPackage,libgmp))