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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= rsync
  5. PKG_VERSION:= 3.2.2
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= 644bd3841779507665211fd7db8359c8a10670c57e305b4aab61b4e40037afa8
  8. PKG_DESCR:= utility that provides fast incremental file transfer
  9. PKG_SECTION:= net/misc
  10. PKG_DEPENDS:= libpopt
  11. PKG_BUILDDEP:= popt libressl
  12. HOST_BUILDDEP:= libressl-host
  13. PKG_URL:= http://rsync.samba.org/
  14. PKG_SITES:= http://rsync.samba.org/ftp/rsync/
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include $(ADK_TOPDIR)/mk/host.mk
  17. include ${ADK_TOPDIR}/mk/package.mk
  18. $(eval $(call HOST_template,RSYNC,rsync,$(PKG_VERSION)-$(PKG_RELEASE)))
  19. $(eval $(call PKG_template,RSYNC,rsync,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  20. HOST_CONFIGURE_ARGS:= --disable-xxhash \
  21. --disable-zstd \
  22. --disable-lz4
  23. CONFIGURE_ARGS:= --disable-xxhash \
  24. --disable-zstd \
  25. --disable-lz4
  26. rsync-install:
  27. ${INSTALL_DIR} ${IDIR_RSYNC}/usr/bin
  28. ${INSTALL_BIN} ${WRKINST}/usr/bin/rsync ${IDIR_RSYNC}/usr/bin
  29. include $(ADK_TOPDIR)/mk/host-bottom.mk
  30. include ${ADK_TOPDIR}/mk/pkg-bottom.mk