wok annotate chrpath/receipt @ rev 20309

syslinux/isohybrid.sh: resize EFI partition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 14 15:59:11 2018 +0200 (2018-05-14)
parents eb8067417980
children 56931eff6ddf
rev   line source
slaxemulator@6581 1 # SliTaz package receipt.
slaxemulator@6581 2
slaxemulator@6581 3 PACKAGE="chrpath"
slaxemulator@6581 4 VERSION="0.13"
slaxemulator@6581 5 CATEGORY="misc"
slaxemulator@6581 6 SHORT_DESC="Change or delete the rpath or runpath in ELF files"
slaxemulator@6581 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15579 8 LICENSE="GPL2"
slaxemulator@6581 9 TARBALL="${PACKAGE}_${VERSION}.orig.tar.gz"
slaxemulator@6581 10 WEB_SITE="http://packages.debian.org/chrpath"
slaxemulator@6581 11 WGET_URL="http://ftp.debian.org/debian/pool/main/c/$PACKAGE/$TARBALL"
slaxemulator@6581 12
slaxemulator@6581 13 # Rules to configure and make the package.
slaxemulator@6581 14 compile_rules()
slaxemulator@6581 15 {
pascal@19284 16 sed -i 's|/doc|/share/doc|' Makefile*
slaxemulator@6581 17 ./configure \
slaxemulator@6581 18 --prefix=/usr \
slaxemulator@6581 19 --infodir=/usr/share/info \
slaxemulator@6581 20 --mandir=/usr/share/man \
slaxemulator@6581 21 $CONFIGURE_ARGS &&
pascal@15579 22 make && make DESTDIR=$DESTDIR install
slaxemulator@6581 23 }
slaxemulator@6581 24
slaxemulator@6581 25 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6581 26 genpkg_rules()
slaxemulator@6581 27 {
slaxemulator@6581 28 mkdir -p $fs/usr
pascal@15579 29 cp -a $install/usr/bin $fs/usr
slaxemulator@6581 30 }
slaxemulator@6581 31