gst1-plugins-base: update to 1.22.8
[feed/packages.git] / utils / tini / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=tini
4 PKG_VERSION:=0.19.0
5 PKG_RELEASE:=2
6
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
13 PKG_MAINTAINER:=Gerard Ryan <G.M0N3Y.2503@gmail.com>
14 PKG_LICENSE:=MIT
15 PKG_LICENSE_FILES:=LICENSE
16
17 include $(INCLUDE_DIR)/package.mk
18 include $(INCLUDE_DIR)/cmake.mk
19
20 define Package/tini
21 SECTION:=utils
22 CATEGORY:=Utilities
23 TITLE:=simplest init utility
24 URL:=https://github.com/krallin/tini
25 DEPENDS:=
26 endef
27
28 define Package/tini/description
29 A tiny but valid init process for containers.
30 endef
31
32 CMAKE_OPTIONS += -DTINI_VERSION_GIT='$(TINI_COMMIT)'
33 TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lc -lgcc_eh)
34
35 define Package/tini/install
36 $(INSTALL_DIR) $(1)/usr/bin
37
38 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tini-static $(1)/usr/bin/docker-init
39 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tini $(1)/usr/bin/
40 endef
41
42 $(eval $(call BuildPackage,tini))