summaryrefslogtreecommitdiffstats
path: root/rules/bayer2rgb3.make
blob: 9a0d9b9b58c0bdb82ccd5f1f065985336b086e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*-makefile-*-
#
# Copyright (C) 2020 by Marian Cichy <m.cichy@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_BAYER2RGB3) += bayer2rgb3

#
# Paths and names
#
BAYER2RGB3_VERSION	:= 0.4.1
BAYER2RGB3_MD5		:= 5362a93d4251eb012d38c1409af0182e
BAYER2RGB3		:= bayer2rgb3-$(BAYER2RGB3_VERSION)
BAYER2RGB3_SUFFIX	:= zip
BAYER2RGB3_URL		:= https://gitlab-ext.sigma-chemnitz.de/ensc/bayer2rgb/-/archive/master/bayer2rgb-master.zip
BAYER2RGB3_SOURCE	:= $(SRCDIR)/$(BAYER2RGB3).$(BAYER2RGB3_SUFFIX)
BAYER2RGB3_DIR		:= $(BUILDDIR)/$(BAYER2RGB3)
BAYER2RGB3_LICENSE	:= GPL-3.0-only
BAYER2RGB3_LICENSE_FILES := file://COPYING;md5=d32239bcb673463ab874e80d47fae504

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
BAYER2RGB3_CONF_TOOL	:= autoconf
BAYER2RGB3_CONF_OPT	:= \
	$(CROSS_AUTOCONF_USR) \
	--enable-as-needed \
	--$(call ptx/endis, PTXCONF_BAYER2RGB3_COMMAND_TOOL)-cplusplus \
	--$(call ptx/endis, PTXCONF_BAYER2RGB3_COMMAND_TOOL)-c

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

$(STATEDIR)/bayer2rgb3.targetinstall:
	@$(call targetinfo)

	@$(call install_init, bayer2rgb3)
	@$(call install_fixup, bayer2rgb3,PRIORITY,optional)
	@$(call install_fixup, bayer2rgb3,SECTION,base)
	@$(call install_fixup, bayer2rgb3,AUTHOR,"Marian Cichy <m.cichy@pengutronix.de>")
	@$(call install_fixup, bayer2rgb3,DESCRIPTION,missing)

ifdef PTXCONF_BAYER2RGB3_COMMAND_TOOL
	@$(call install_copy, bayer2rgb3, 0, 0, 0755, -, /usr/bin/bayer2rgb)
endif
	@$(call install_lib, bayer2rgb3, 0, 0, 0644, libbayer2rgb3)

	@$(call install_finish, bayer2rgb3)

	@$(call touch)

# vim: syntax=make