Makefile 1.1 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:= 5.3.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 08027af2368ecad8060f9f5bf46c2bd9
  8. PKG_DESCR:= Package Manager
  9. PKG_SECTION:= base
  10. PKG_URL:= http://www.rpm.org/
  11. PKG_SITES:= http://rpm5.org/files/rpm/rpm-5.3/
  12. PKG_HOST_DEPENDS:= !cygwin !darwin
  13. PKG_TARGET_DEPENDS:= !foxboard
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,RPM,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_ENV+= ac_cv_va_copy=no
  17. CONFIGURE_ARGS+= --with-usecrypto=BeeCrypt \
  18. --with-beecrypt=internal \
  19. --with-dbapi=db \
  20. --with-sqlite=none \
  21. --without-python \
  22. --without-perl \
  23. --without-ruby \
  24. --without-lua
  25. post-install:
  26. $(INSTALL_DIR) $(IDIR_RPM)/usr/bin $(IDIR_RPM)/usr/lib/rpm
  27. $(INSTALL_BIN) $(WRKINST)/usr/bin/rpm* $(IDIR_RPM)/usr/bin
  28. $(CP) $(WRKINST)/usr/lib/*.so* $(IDIR_RPM)/usr/lib
  29. $(CP) $(WRKINST)/usr/lib/rpm/* $(IDIR_RPM)/usr/lib/rpm
  30. include ${TOPDIR}/mk/pkg-bottom.mk