# SliTaz package receipt. PACKAGE="patchelf" VERSION="0.14.5" CATEGORY="development" SHORT_DESC="Modify the dynamic linker and RPATH of ELF executables." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" WEB_SITE="https://nixos.org/patchelf.html" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/NixOS/$PACKAGE/archive/$VERSION.tar.gz" DEPENDS="gcc83-lib-base" BUILD_DEPENDS="automake gcc83" current_version() { wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' } # Rules to configure and make the package. compile_rules() { export CC=gcc-83 export CXX=g++-83 ./bootstrap.sh && ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders bin }