wok-next view patchelf/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents c2b0050b1a4c
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="patchelf"
4 VERSION="0.9"
5 CATEGORY="development"
6 SHORT_DESC="Modify the dynamic linker and RPATH of ELF executables"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://nixos.org/patchelf.html"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://nixos.org/releases/patchelf/patchelf-$VERSION/$TARBALL"
14 # --prefix=/usr \
15 # --mandir=/usr/share/man \
16 compile_rules() {
17 ./configure \
18 $CONFIGURE_ARGS &&
19 make &&
20 make install
21 }
23 genpkg_rules() {
24 copy @std
25 DEPENDS="gcc-lib-base"
26 }