wok annotate patchelf/receipt @ rev 20799

updated clonezilla (3.3.10 -> 3.27.16)
author Hans-G?nter Theisgen
date Fri Feb 15 13:43:34 2019 +0100 (2019-02-15)
parents c2b0050b1a4c
children 0847cb95b143
rev   line source
pascal@17499 1 # SliTaz package receipt.
pascal@17499 2
pascal@17499 3 PACKAGE="patchelf"
pascal@17499 4 VERSION="0.8"
pascal@17499 5 CATEGORY="development"
pascal@17499 6 SHORT_DESC="Modify the dynamic linker and RPATH of ELF executables."
pascal@17499 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17499 8 LICENSE="GPL3"
pascal@17499 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@20669 10 WEB_SITE="https://nixos.org/patchelf.html"
pascal@20669 11 WGET_URL="https://nixos.org/releases/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
pascal@17499 12
pascal@17499 13 DEPENDS="gcc-lib-base"
pascal@17499 14
pascal@17499 15 # Rules to configure and make the package.
pascal@17499 16 compile_rules()
pascal@17499 17 {
pascal@17499 18 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@17499 19 $CONFIGURE_ARGS &&
pascal@17499 20 make &&
pascal@17499 21 make DESTDIR=$DESTDIR install
pascal@17499 22 }
pascal@17499 23
pascal@17499 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17499 25 genpkg_rules()
pascal@17499 26 {
pascal@17499 27 mkdir -p $fs/usr
pascal@17499 28 cp -a $install/usr/bin $fs/usr
pascal@17499 29 }