|
|
@ -26,49 +26,21 @@ define Package/libgmp |
|
|
|
SECTION:=libs
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=GNU multiprecision arithmetic library
|
|
|
|
TITLE:=GNU multiprecision arithmetic library
|
|
|
|
DESCRIPTION:=GNU multiprecision arithmetic library.
|
|
|
|
|
|
|
|
URL:=http://www.swox.com/gmp/
|
|
|
|
URL:=http://www.swox.com/gmp/
|
|
|
|
endef |
|
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Build/Configure |
|
|
|
define Build/Configure |
|
|
|
(cd $(PKG_BUILD_DIR); rm -f config.cache; \
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
--enable-shared \
|
|
|
|
CC="$(TARGET_CROSS)gcc" \
|
|
|
|
--enable-static \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
)
|
|
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|
|
|
|
|
|
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
|
|
|
--target=$(GNU_TARGET_NAME) \
|
|
|
|
|
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
|
|
|
|
--program-prefix="" \
|
|
|
|
|
|
|
|
--program-suffix="" \
|
|
|
|
|
|
|
|
--prefix=/usr \
|
|
|
|
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
|
|
|
|
--datadir=/usr/share \
|
|
|
|
|
|
|
|
--includedir=/usr/include \
|
|
|
|
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
|
|
|
|
--localstatedir=/var \
|
|
|
|
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
|
|
|
|
--sbindir=/usr/sbin \
|
|
|
|
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
|
|
|
|
$(DISABLE_NLS) \
|
|
|
|
|
|
|
|
$(DISABLE_LARGEFILE) \
|
|
|
|
|
|
|
|
--enable-shared \
|
|
|
|
|
|
|
|
--enable-static \
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
endef |
|
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Build/Compile |
|
|
|
define Build/Compile |
|
|
|
$(call Build/Compile/Default, DESTDIR="$(PKG_INSTALL_DIR)" all install)
|
|
|
|
$(call Build/Compile/Default, \
|
|
|
|
endef |
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
|
|
|
|
all install \
|
|
|
|
define Package/libgmp/install |
|
|
|
)
|
|
|
|
install -m0755 -d $(1)/usr/lib
|
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.so.* $(1)/usr/lib/
|
|
|
|
|
|
|
|
endef |
|
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Build/InstallDev |
|
|
|
define Build/InstallDev |
|
|
@ -84,4 +56,9 @@ define Build/UninstallDev |
|
|
|
$(STAGING_DIR)/usr/lib/libgmp.{a,so*}
|
|
|
|
$(STAGING_DIR)/usr/lib/libgmp.{a,so*}
|
|
|
|
endef |
|
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
define Package/libgmp/install |
|
|
|
|
|
|
|
install -m0755 -d $(1)/usr/lib
|
|
|
|
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgmp.so.* $(1)/usr/lib/
|
|
|
|
|
|
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libgmp)) |
|
|
|
$(eval $(call BuildPackage,libgmp)) |
|
|
|