treewide: update email address of Tomasz Maciej Nowak
[openwrt/openwrt.git] / tools / cbootimage-configs / Makefile
1 #
2 # Copyright (c) 2017-2019 Tomasz Maciej Nowak <tmn505@gmail.com>
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME := cbootimage-configs
10
11 PKG_SOURCE_DATE := 2017-04-13
12 PKG_SOURCE_PROTO := git
13 PKG_SOURCE_URL := https://github.com/NVIDIA/cbootimage-configs.git
14 PKG_SOURCE_VERSION := 7c3b458b93ed6947cd083623f543e93f9103cc0f
15 PKG_MIRROR_HASH := 1d24421af8cf74ec2d625e237aa8121b1273774c4380ad333e2954e052a5a4fe
16
17 include $(INCLUDE_DIR)/host-build.mk
18
19 define Host/Compile
20 endef
21
22 define Host/Install
23 $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/$(PKG_NAME)
24 $(CP) $(HOST_BUILD_DIR)/* \
25 $(STAGING_DIR_HOST)/share/$(PKG_NAME)
26 endef
27
28 define Host/Clean
29 rm -fR $(STAGING_DIR_HOST)/share/$(PKG_NAME)
30 endef
31
32 $(eval $(call HostBuild))