1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 22:53:09 +02:00

standardize Makfile, remove dup description

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4813 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2006-09-23 13:27:50 +00:00
parent cb945ac420
commit 2e73ce1500

View File

@ -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))