wok-next annotate patchelf/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents c2b0050b1a4c
children
rev   line source
al@20443 1 # SliTaz package receipt v2.
pascal@17499 2
pascal@17499 3 PACKAGE="patchelf"
al@20443 4 VERSION="0.9"
pascal@17499 5 CATEGORY="development"
al@20443 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"
al@20443 9 WEB_SITE="https://nixos.org/patchelf.html"
al@20443 10
pascal@17499 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20443 12 WGET_URL="https://nixos.org/releases/patchelf/patchelf-$VERSION/$TARBALL"
pascal@17499 13
al@20443 14 # --prefix=/usr \
al@20443 15 # --mandir=/usr/share/man \
al@20443 16 compile_rules() {
al@20443 17 ./configure \
pascal@17499 18 $CONFIGURE_ARGS &&
pascal@17499 19 make &&
al@20443 20 make install
pascal@17499 21 }
pascal@17499 22
al@20443 23 genpkg_rules() {
al@20443 24 copy @std
al@20443 25 DEPENDS="gcc-lib-base"
pascal@17499 26 }