summaryrefslogtreecommitdiffstats
path: root/rules/sched_switch.make
blob: 0be4919d09f27138a57917d8ad8acdac14aac718 (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
# -*-makefile-*-
#
# Copyright (C) 2010 by Remy Bohmer <linux@bohmer.net>
#
# 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_SCHED_SWITCH) += sched_switch

#
# Paths and names
#
SCHED_SWITCH_VERSION	:= 0.1
SCHED_SWITCH_MD5	:= 88772802583336efa4f4bbcfbf130194
SCHED_SWITCH		:= sched_switch-$(SCHED_SWITCH_VERSION)
SCHED_SWITCH_SUFFIX	:= tgz
SCHED_SWITCH_URL	:= http://www.osadl.org/uploads/media/$(SCHED_SWITCH).$(SCHED_SWITCH_SUFFIX)
SCHED_SWITCH_SOURCE	:= $(SRCDIR)/$(SCHED_SWITCH).$(SCHED_SWITCH_SUFFIX)
SCHED_SWITCH_DIR	:= $(BUILDDIR)/$(SCHED_SWITCH)
SCHED_SWITCH_LICENSE	:= GPL-2.0

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

SCHED_SWITCH_CONF_TOOL	:= NO
SCHED_SWITCH_COMPILE_ENV:= $(CROSS_ENV_FLAGS)
SCHED_SWITCH_MAKE_OPT	:= $(CROSS_ENV_CC)
SCHED_SWITCH_INSTALL_OPT:= \
	$(SCHED_SWITCH_MAKE_OPT) \
	DESTDIR=$(SCHED_SWITCH_PKGDIR) \
	install

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

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

	@$(call install_init,  sched_switch)
	@$(call install_fixup, sched_switch,PRIORITY,optional)
	@$(call install_fixup, sched_switch,SECTION,base)
	@$(call install_fixup, sched_switch,AUTHOR,"Remy Bohmer <linux@bohmer.net>")
	@$(call install_fixup, sched_switch,DESCRIPTION,missing)

	@$(call install_copy, sched_switch, 0, 0, 0755, -, /usr/bin/sched_switch)

	@$(call install_finish, sched_switch)

	@$(call touch)

# vim: syntax=make