wok-next view prelink/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents d43bf7aae921
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="prelink"
4 VERSION="20130503"
5 CATEGORY="system-tools"
6 SHORT_DESC="ELF prelinking utility to speed up dynamic linking"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="http://people.redhat.com/jakub/prelink/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://people.redhat.com/jakub/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="elfutils-dev"
16 compile_rules() {
17 sed -i 's/^LIBS.*/& -lpthread/' src/Makefile*
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 copy @std
27 DEPENDS="elfutils"
28 }