summaryrefslogtreecommitdiffstats
path: root/rules/flup6.make
blob: 0511008e975eabec0fb4a9bacc683986ea637c3a (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
# -*-makefile-*-
#
# Copyright (C) 2011 by Robert Schwebel <r.schwebel@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
PACKAGES-$(PTXCONF_FLUP6) += flup6

#
# Paths and names
#
FLUP6_VERSION	:= 1.1
FLUP6_MD5	:= 67c20571a6e637b1f457031767fe8ae7
FLUP6		:= flup6-$(FLUP6_VERSION)
FLUP6_SUFFIX	:= tar.gz
FLUP6_URL	:= http://pypi.python.org/packages/source/f/flup6/$(FLUP6).$(FLUP6_SUFFIX)
FLUP6_SOURCE	:= $(SRCDIR)/$(FLUP6).$(FLUP6_SUFFIX)
FLUP6_DIR	:= $(BUILDDIR)/$(FLUP6)
FLUP6_LICENSE	:= BSD, MIT

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

FLUP6_CONF_TOOL	:= python3

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

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

	@$(call install_init, flup6)
	@$(call install_fixup, flup6,PRIORITY,optional)
	@$(call install_fixup, flup6,SECTION,base)
	@$(call install_fixup, flup6,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
	@$(call install_fixup, flup6,DESCRIPTION,missing)

	@$(call install_copy, flup6, 0, 0, 0755, $(PYTHON_SITEPACKAGES))
	@$(call install_copy, flup6, 0, 0, 0755, $(PYTHON_SITEPACKAGES)/flup6)
	@$(call install_copy, flup6, 0, 0, 0755, $(PYTHON_SITEPACKAGES)/flup6/client)
	@$(call install_copy, flup6, 0, 0, 0755, $(PYTHON_SITEPACKAGES)/flup6/server)

	for file in $(shell cd $(FLUP6_PKGDIR) && find . -name "*.pyc"); \
	do \
		$(call install_copy, flup6, 0, 0, 0644, -, /$$file) \
	done

	@$(call install_finish, flup6)

	@$(call touch)

# vim: syntax=make