blob: 66bd6b3ed1733dee366ccaeb123fcf5043afc830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SECTION = "devel"
DEPENDS = "elfutils "
DESCRIPTION = " The prelink package contains a utility which modifies ELF shared libraries \
and executables, so that far fewer relocations need to be resolved at \
runtime and thus programs come up faster."
SRC_URI = "ftp://people.redhat.com/jakub/prelink/prelink-${PV}.tar.bz2"
S = "${WORKDIR}/prelink"
EXTRA_OECONF = "--disable-64bit"
inherit autotools
do_install_append () {
install -d ${D}/${sysconfdir}/cron.daily ${D}/${sysconfdir}/default
}
|