Makefile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= rpm
  5. PKG_VERSION:= 4.7.2
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 224715646325df4cd3904e3ac9e16186
  8. PKG_DESCR:= Package Manager
  9. PKG_SECTION:= base
  10. PKG_BUILDDEP:= nss libdb
  11. PKG_URL:= http://www.rpm.org/
  12. PKG_SITES:= http://rpm.org/releases/rpm-4.7.x/
  13. PKG_HOST_DEPENDS:= !cygwin !darwin
  14. PKG_TARGET_DEPENDS:= !foxboard
  15. DISTFILES:= ${PKG_NAME}-$(PKG_VERSION).tar.bz2
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,RPM,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. TCPPFLAGS+= -I${STAGING_DIR}/usr/include/nspr \
  19. -I${STAGING_DIR}/usr/include/nss
  20. CONFIGURE_ARGS:= --with-external-db \
  21. --without-lua
  22. post-install:
  23. $(INSTALL_DIR) $(IDIR_RPM)/usr/bin $(IDIR_RPM)/usr/lib
  24. $(INSTALL_DIR) $(IDIR_RPM)/usr/lib/rpm
  25. $(INSTALL_BIN) $(WRKINST)/bin/rpm $(IDIR_RPM)/usr/bin
  26. $(INSTALL_BIN) $(WRKINST)/usr/bin/rpm* $(IDIR_RPM)/usr/bin
  27. $(CP) $(WRKINST)/usr/lib/*.so* $(IDIR_RPM)/usr/lib
  28. $(CP) $(WRKINST)/usr/lib/rpm/* $(IDIR_RPM)/usr/lib/rpm
  29. include ${TOPDIR}/mk/pkg-bottom.mk