You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=tini
  3. PKG_VERSION:=0.19.0
  4. PKG_RELEASE:=2
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  6. PKG_SOURCE_URL:=https://codeload.github.com/krallin/tini/tar.gz/v${PKG_VERSION}?
  7. PKG_HASH:=0fd35a7030052acd9f58948d1d900fe1e432ee37103c5561554408bdac6bbf0d
  8. PKG_SOURCE_VERSION:=de40ad007797e0dcd8b7126f27bb87401d224240
  9. TINI_COMMIT:=de40ad0
  10. PKG_MAINTAINER:=Gerard Ryan <G.M0N3Y.2503@gmail.com>
  11. PKG_LICENSE:=MIT
  12. PKG_LICENSE_FILES:=LICENSE
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../../devel/ninja/ninja-cmake.mk
  15. define Package/tini
  16. SECTION:=utils
  17. CATEGORY:=Utilities
  18. TITLE:=simplest init utility
  19. URL:=https://github.com/krallin/tini
  20. DEPENDS:=
  21. endef
  22. define Package/tini/description
  23. A tiny but valid init process for containers.
  24. endef
  25. CMAKE_OPTIONS += -DTINI_VERSION_GIT='$(TINI_COMMIT)'
  26. TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lc -lgcc_eh)
  27. define Package/tini/install
  28. $(INSTALL_DIR) $(1)/usr/bin
  29. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tini-static $(1)/usr/bin/docker-init
  30. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tini $(1)/usr/bin/
  31. endef
  32. $(eval $(call BuildPackage,tini))