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.

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