summaryrefslogtreecommitdiffstats
path: root/rules/prelink.make
blob: f6dfb443a3865f1602b642d1947773183b52d3de (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
64
65
66
67
68
69
70
# -*-makefile-*-
#
# Copyright (C) 2008 by Marc Kleine-Budde <mkl@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_PRELINK) += prelink

#
# Paths and names
#
PRELINK_VERSION	:= 0.0.20090925
PRELINK_MD5	:= ed90412ad4ee7f5b5e8fff3d6649e49b
PRELINK_SUFFIX	:= orig.tar.gz
PRELINK		:= prelink-$(PRELINK_VERSION)
PRELINK_TARBALL	:= prelink_$(PRELINK_VERSION).$(PRELINK_SUFFIX)
PRELINK_URL	:= $(call ptx/mirror, DEB, pool/main/p/prelink/$(PRELINK_TARBALL))
PRELINK_SOURCE	:= $(SRCDIR)/$(PRELINK_TARBALL)
PRELINK_DIR	:= $(BUILDDIR)/$(PRELINK)
PRELINK_LICENSE	:= GPL-2.0

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

PRELINK_PATH	:= PATH=$(CROSS_PATH)
PRELINK_ENV 	:= $(CROSS_ENV)

#
# autoconf
#
PRELINK_AUTOCONF := $(CROSS_AUTOCONF_USR)

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

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

	@$(call install_init, prelink)
	@$(call install_fixup, prelink,PRIORITY,optional)
	@$(call install_fixup, prelink,SECTION,base)
	@$(call install_fixup, prelink,AUTHOR,"Marc Kleine-Budde <mkl@pengutronix.de>")
	@$(call install_fixup, prelink,DESCRIPTION,missing)

	@$(call install_alternative, prelink, 0, 0, 0644, /etc/prelink.conf)
	@$(call install_copy, prelink, 0, 0, 0755, -, /usr/sbin/prelink)

ifdef PTXCONF_PRELINK_RC_ONCE
	@$(call install_alternative, prelink, 0, 0, 0755, /etc/rc.once.d/prelink)
ifdef PTXCONF_PRELINK_SKIP_ON_NFSROOT
	@$(call install_replace, prelink, /etc/rc.once.d/prelink, @NFSSKIP@, yes)
else
	@$(call install_replace, prelink, /etc/rc.once.d/prelink, @NFSSKIP@, no)
endif
endif

	@$(call install_finish, prelink)

	@$(call touch)

# vim: syntax=make