Makefile 660 B

12345678910111213141516171819202122232425262728
  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=fakeroot
  7. PKG_VERSION:=1.26
  8. PKG_RELEASE:=1
  9. PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
  10. PKG_SOURCE_URL:=@DEBIAN/pool/main/f/fakeroot
  11. PKG_HASH:=480a578ffdc5592e73df4c086950d321b4adc78dbdaec56c82e4fe1fb68de8e9
  12. PKG_LICENSE:=GPL-3.0-or-later
  13. PKG_LICENSE_FILES:=COPYING
  14. PKG_FIXUP:=autoreconf
  15. include $(INCLUDE_DIR)/host-build.mk
  16. HOST_CONFIGURE_VARS += \
  17. ac_cv_header_sys_capability_h=no \
  18. ac_cv_func_capset=no \
  19. CPP="$(HOSTCC) -E"
  20. HOST_CONFIGURE_ARGS += \
  21. --with-ipc=tcp
  22. $(eval $(call HostBuild))