wok annotate patchelf/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents
children a78610b2eb47
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@17499 10 WEB_SITE="http://nixos.org/patchelf.html"
pascal@17499 11 WGET_URL="http://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 }